-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
67 lines (62 loc) · 1.82 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
#! /usr/bin/env python
import codecs
import os
from setuptools import find_packages, setup
# get __version__ from _version.py
ver_file = os.path.join("lce", "_version.py")
with open(ver_file) as f:
exec(f.read())
DISTNAME = "lcensemble"
DESCRIPTION = "Local Cascade Ensemble package"
with codecs.open("README.rst", encoding="utf-8-sig") as f:
LONG_DESCRIPTION = f.read()
LONG_DESCRIPTION_TYPE = "text/x-rst"
MAINTAINER = "Kevin Fauvel"
MAINTAINER_EMAIL = "[email protected]"
URL = "https://lce.readthedocs.io/en/latest/"
LICENSE = "Apache-2.0"
DOWNLOAD_URL = "https://github.com/LocalCascadeEnsemble/LCE"
VERSION = __version__
INSTALL_REQUIRES = [
"catboost==1.1.1",
"hyperopt==0.2.7",
"lightgbm==3.3.5",
"numpy==1.23.3",
"pandas==1.5.0",
"scikit-learn==1.1.2",
"xgboost==1.6.2",
]
PROJECT_URLS = {
"Documentation": "https://lce.readthedocs.io/en/latest/",
}
CLASSIFIERS = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
EXTRAS_REQUIRE = {
"tests": ["pytest", "pytest-cov"],
"docs": ["sphinx", "sphinx-gallery", "sphinx_rtd_theme", "numpydoc", "pillow"],
}
setup(
name=DISTNAME,
python_requires=">=3.8",
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
version=VERSION,
download_url=DOWNLOAD_URL,
project_urls=PROJECT_URLS,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESCRIPTION_TYPE,
zip_safe=False,
classifiers=CLASSIFIERS,
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
)