Skip to content

Commit 439bc3f

Browse files
committed
Update PyPi package page
https://pypi.org/project/causallib/ Use README as package description to avoid maintaining multiple descriptions. Add link to readthedocs documentation.
1 parent 2c7a231 commit 439bc3f

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright 2019 IBM Corp.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

setup.py

+11-7
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
long_description = f.read()
1111

1212
setup(name='causallib',
13-
version="1.0.0",
13+
version="0.5.0-beta",
1414
# version=cl_version
1515
# packages=find_packages(exclude=['scripts', 'data', 'tests']),
1616
packages=find_packages(),
@@ -24,11 +24,15 @@
2424
keywords="causal inference effect estimation causality",
2525
install_requires=open("requirements.txt", "r").read().splitlines(),
2626
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+
},
3032
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+
]
3438
)

0 commit comments

Comments
 (0)