-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
54 lines (50 loc) · 1.4 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
# setup.py
from setuptools import setup, find_packages
from pathlib import Path
name = "nodegam"
version = "0.3.0"
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name=name,
version=version,
author="Chun-Hao Chang",
author_email="chkchang21@gmail.com",
description="NodeGAM - an interpretable deep learning GAM model.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zzzace2000/nodegam",
packages=find_packages(),
package_data={},
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"torch>=1.1.0",
"numpy>=0.13",
"scipy>=1.2.0",
"scikit-learn>=0.17",
"catboost>=0.12.2",
"xgboost>=0.81",
"matplotlib",
"tqdm",
"tensorboardX",
"pandas",
"prefetch_generator",
"requests",
"category_encoders",
"filelock",
"qhoptim",
"mat4py",
"interpret>=0.2",
"pygam",
"seaborn",
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)