-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
45 lines (39 loc) · 1.37 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup
version = '0.0.3'
description = 'Computing causal effects'
long_description = """
# causaleffect
This project implements causal effect identifiability algorithms
and provides functionality for defining and plotting
causal diagrams.
It implements both conditional and non-conditional
causal effect queries from a DAG, and returns a hedge
if the inputted causal effect is not identifiable.
For more information,
please look at our [Github page](https://github.com/pedemonte96/causaleffect).
"""
with open('requirements.txt') as f:
install_requires = [line.strip() for line in f if line.strip()]
setup(
name="causaleffect",
packages=['causaleffect'],
version=version,
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
author="Martí Pedemonte",
author_email="[email protected]",
url='https://github.com/pedemonte96/causaleffect',
install_requires=install_requires,
python_requires=">=3.7",
keywords=['causaleffect', 'causality',
'causation', 'identifiability', 'identification',
'graph'],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
]
)