-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
48 lines (43 loc) · 1.74 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
46
47
48
from setuptools import setup
exec(compile(open('zepid/version.py').read(),
'zepid/version.py', 'exec'))
with open("README.md") as f:
descript = f.read()
setup(name='zepid',
version=__version__,
description='Tool package for epidemiologic analyses',
keywords='epidemiology inverse-probability-weights risk-ratio g-computation g-formula IPW AIPW TMLE',
packages=['zepid',
'zepid.calc',
'zepid.graphics',
'zepid.sensitivity_analysis',
'zepid.superlearner',
'zepid.causal.ipw',
'zepid.causal.gformula',
'zepid.causal.doublyrobust',
'zepid.causal.generalize',
'zepid.causal.snm',
'zepid.causal.causalgraph',
'zepid.datasets'],
include_package_data=True,
license='MIT',
author='Paul Zivich',
author_email='[email protected]',
url='https://github.com/pzivich/zepid',
classifiers=['Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'],
install_requires=['pandas>=0.18',
'numpy',
'statsmodels>=0.7.0',
'matplotlib>=2.0',
'scipy',
'tabulate',
'scikit-learn',
'patsy'],
extras_require={"DirectedAcyclicGraph": ["networkx"], },
long_description=descript,
long_description_content_type="text/markdown",
)