-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (47 loc) · 1.33 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
# setup.py
from setuptools import setup, find_packages
from pathlib import Path
name = "nodegamlss"
version = "0.1.0"
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name=name,
version=version,
author="Anton Thielmann",
author_email="[email protected]",
description="NodeGAMLSS - an interpretable distributional deep learning GAM model.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AnFreTh/NodeGAMLSS",
packages=find_packages(),
package_data={},
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=[
"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",
],
)