Skip to content

Commit

Permalink
fixed setup.py for v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ijmbarr committed Jul 1, 2018
1 parent 5e2922b commit 20e0ca1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ __pycache__/
.ipynb_checkpoints/
.pytest_cache/
dist/
build/
*.egg-info/

*~
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.1
0.0.3
5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@

with open(path.join(here, 'VERSION')) as version_file:
version = version_file.read().strip()

setup(
name="causalgraphicalmodels",
version=version,
description="Causality Graphical Models in Python",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/ijmbarr/causalgraphicalmodels",
author="Iain Barr",
Expand All @@ -28,5 +29,7 @@
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
],
keywords="causal inference causal graphical models causality"
)
keywords="causal inference causal graphical models causality",
packages=find_packages(exclude=["notebook", "test"]),
install_requires=["graphviz", "networkx", "numpy", "pandas"]
)

0 comments on commit 20e0ca1

Please sign in to comment.