|
10 | 10 | long_description = f.read()
|
11 | 11 |
|
12 | 12 | setup(name='causallib',
|
13 |
| - version="1.0.0", |
| 13 | + version="0.5.0-beta", |
14 | 14 | # version=cl_version
|
15 | 15 | # packages=find_packages(exclude=['scripts', 'data', 'tests']),
|
16 | 16 | packages=find_packages(),
|
|
24 | 24 | keywords="causal inference effect estimation causality",
|
25 | 25 | install_requires=open("requirements.txt", "r").read().splitlines(),
|
26 | 26 | extra_requires={'docs': open(os.path.join("docs", "requirements.txt"), "r").read().splitlines()},
|
27 |
| - project_urls={'Bug Reports': GIT_URL + '/issues', |
28 |
| - 'Source Code': GIT_URL, |
29 |
| - 'Documentation': 'causallib.readthedocs.io/en/latest/'}, |
| 27 | + project_urls={ |
| 28 | + 'Documentation': 'https://causallib.readthedocs.io/en/latest/', |
| 29 | + 'Source Code': GIT_URL, |
| 30 | + 'Bug Tracker': GIT_URL + '/issues', |
| 31 | + }, |
30 | 32 | classifiers=[
|
31 |
| - "Programming Language :: Python :: 3.6", |
32 |
| - "License :: OSI Approved :: Apache Software License", |
33 |
| - ] |
| 33 | + "Programming Language :: Python :: 3.6", |
| 34 | + "License :: OSI Approved :: Apache Software License", |
| 35 | + "Development Status :: 4 - Beta", |
| 36 | + "Topic :: Scientific/Engineering" |
| 37 | + ] |
34 | 38 | )
|
0 commit comments