Skip to content

Commit 6936b52

Browse files
committed
pypi works
1 parent e133907 commit 6936b52

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

setup.cfg

Lines changed: 0 additions & 3 deletions
This file was deleted.

setup.py

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
import os
2-
31
from setuptools import find_packages, setup
42

53
VERSION = "0.0.1"
64

7-
here = os.path.dirname(os.path.realpath(__file__))
85
extras_require = {
96
"doc": [
107
"nbsphinx",
@@ -15,14 +12,25 @@
1512
"myst-parser",
1613
]
1714
}
15+
with open("README.md", "r", encoding="utf-8") as fh:
16+
long_description = fh.read()
17+
1818
setup(
1919
name="mvtk",
2020
version=VERSION,
21-
url="Apache License 2.0",
21+
license='Apache-2.0',
2222
author="Alex Eftimiades",
2323
author_email="[email protected]",
2424
description="Model validation toolkit",
25+
long_description=long_description,
26+
long_description_content_type="text/markdown",
2527
packages=find_packages(),
28+
classifiers=[
29+
"Programming Language :: Python :: 3",
30+
"License :: OSI Approved :: Apache Software License",
31+
"Operating System :: MacOS",
32+
"Operating System :: POSIX :: Linux",
33+
],
2634
install_requires=[
2735
"jax>=0.2.8",
2836
"public>=2020.12.3",
@@ -37,4 +45,8 @@
3745
"tqdm",
3846
],
3947
extras_require=extras_require,
48+
url="https://finraos.github.io/model-validation-toolkit/",
49+
project_urls={
50+
"Bug Tracker": "https://github.com/FINRAOS/model-validation-toolkit/issues",
51+
},
4052
)

0 commit comments

Comments
 (0)