-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
91 lines (83 loc) · 2.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import codecs
from setuptools import find_packages, setup
DISTNAME = "qolmat"
VERSION = "0.1.8"
DESCRIPTION = "A Python library for optimal data imputation."
LONG_DESCRIPTION_CONTENT_TYPE = "text/x-rst"
with codecs.open("README.rst", encoding="utf-8-sig") as f:
LONG_DESCRIPTION = f.read()
LICENSE = "new BSD"
MAINTAINER = "Julien ROUSSEL, Anh Khoa NGO HO, Charles-Henri PRAT, Guillaume SAËS"
MAINTAINER_EMAIL = (
"mabidi.quantmetry.com"
)
URL = "https://github.com/Quantmetry/qolmat"
DOWNLOAD_URL = "https://pypi.org/project/qolmat/#files"
PROJECT_URLS = {
"Bug Tracker": "https://github.com/Quantmetry/qolmat",
"Documentation": "https://qolmat.readthedocs.io/en/latest/",
"Source Code": "https://github.com/Quantmetry/qolmat",
}
PYTHON_REQUIRES = ">=3.8"
PACKAGES = find_packages()
INSTALL_REQUIRES = [
"category_encoders",
"dcor>=0.6",
"hyperopt",
"numpy>=1.21",
"packaging",
"pandas>=1.3",
"scikit-learn",
"scipy",
"statsmodels>=0.14",
"typing-extensions",
]
EXTRAS_REQUIRE = {
"tests": ["flake8", "mypy", "pandas", "pytest", "pytest-cov", "typed-ast"],
"docs": [
"numpydoc",
"sphinx",
"sphinx-gallery",
"sphinx_rtd_theme",
],
"pytorch": [
"torch==2.0.1",
],
}
CLASSIFIERS = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
PACKAGE_DATA = {"qolmat": ["data/beijing.csv", "data/conductors.csv"]}
setup(
name=DISTNAME,
version=VERSION,
license=LICENSE,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESCRIPTION_CONTENT_TYPE,
url=URL,
download_url=DOWNLOAD_URL,
project_urls=PROJECT_URLS,
packages=PACKAGES,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
classifiers=CLASSIFIERS,
zip_safe=False,
package_data=PACKAGE_DATA,
)