forked from 88vikram/pyebm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 887 Bytes
/
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
import setuptools
setuptools.setup(
name="pyebm",
version="2.0.3",
author="Vikram Venkatraghavan",
author_email="[email protected]",
description="Toolbox for event-based modeling",
long_description="Contains codes for EBM and DEBM with several options for mixture modeling",
long_description_content_type="text/markdown",
url="https://github.com/88vikram/pyebm/",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'numpy',
'pandas',
'scikit-learn',
'scipy',
'six',
'statsmodels',
'matplotlib',
'seaborn',
'requests',
'tqdm'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
)