File tree Expand file tree Collapse file tree 2 files changed +16
-7
lines changed Expand file tree Collapse file tree 2 files changed +16
-7
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- import os
2-
31from setuptools import find_packages , setup
42
53VERSION = "0.0.1"
64
7- here = os .path .dirname (os .path .realpath (__file__ ))
85extras_require = {
96 "doc" : [
107 "nbsphinx" ,
1512 "myst-parser" ,
1613 ]
1714}
15+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
16+ long_description = fh .read ()
17+
1818setup (
1919 name = "mvtk" ,
2020 version = VERSION ,
21- url = " Apache License 2.0" ,
21+ license = ' Apache- 2.0' ,
2222 author = "Alex Eftimiades" ,
23232424 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" ,
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)
You can’t perform that action at this time.
0 commit comments