-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (39 loc) · 1.5 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
"""MossSpider provides an implementation of the targeted maximum likelihood estimator for network-dependent data
(network-TMLE).
To install the `mossspider`, use the following command
$ python -m pip install mossspider
"""
from setuptools import setup
exec(compile(open('mossspider/version.py').read(),
'mossspider/version.py', 'exec'))
with open("README.md") as f:
descript = f.read()
setup(name='mossspider',
version=__version__,
description='Targeted maximum likelihood estimation for network-dependent data',
keywords='tmle network',
packages=['mossspider',
'mossspider.estimators'
],
include_package_data=True,
license='MIT',
author='Paul Zivich',
author_email='[email protected]',
url='https://github.com/pzivich/MossSpider/',
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=['numpy',
'scipy',
'pandas',
'networkx>=2.0.0',
'matplotlib',
'statsmodels',
'patsy'
],
long_description=descript,
long_description_content_type="text/markdown",
)