-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (43 loc) · 1.29 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
49
50
51
52
53
54
55
import os
descr = """Propensity Score Matching"""
DISTNAME = 'psmatching'
DESCRIPTION = 'Propensity Score Matching'
LONG_DESCRIPTION = descr
AUTHOR = 'Chong Dang'
AUTHOR_EMAIL = '[email protected]'
URL = 'https://github.com/rickydangc/psmatching'
DOWNLOAD_URL = 'https://github.com/rickydangc/psmatching'
VERSION = '0.0.1'
PYTHON_VERSION = (3.6)
INSTALL_REQUIRES = [
'numpy',
'pandas',
'scipy',
'statsmodels'
]
if __name__ == "__main__":
from setuptools import setup
setup(
name=DISTNAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
download_url=DOWNLOAD_URL,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
install_requires=INSTALL_REQUIRES,
packages=['psmatching'],
)