-
Notifications
You must be signed in to change notification settings - Fork 111
/
setup.py
65 lines (62 loc) · 2.06 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
import codecs
from setuptools import find_packages, setup
DISTNAME = "MAPIE"
VERSION = "0.9.1"
DESCRIPTION = (
"A scikit-learn-compatible module "
"for estimating prediction intervals."
)
with codecs.open("README.rst", encoding="utf-8-sig") as f:
LONG_DESCRIPTION = f.read()
LONG_DESCRIPTION_CONTENT_TYPE = "text/x-rst"
URL = "https://github.com/scikit-learn-contrib/MAPIE"
DOWNLOAD_URL = "https://pypi.org/project/MAPIE/#files"
PROJECT_URLS = {
"Bug Tracker": "https://github.com/scikit-learn-contrib/MAPIE/issues",
"Documentation": "https://mapie.readthedocs.io/en/latest/",
"Source Code": "https://github.com/scikit-learn-contrib/MAPIE"
}
LICENSE = "new BSD"
MAINTAINER = "T. Cordier, V. Blot, L. Lacombe"
MAINTAINER_EMAIL = (
)
PYTHON_REQUIRES = ">=3.7"
PACKAGES = find_packages()
INSTALL_REQUIRES = ["scikit-learn", "scipy", "numpy>=1.21", "packaging"]
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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
setup(
name=DISTNAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type=LONG_DESCRIPTION_CONTENT_TYPE,
url=URL,
download_url=DOWNLOAD_URL,
project_urls=PROJECT_URLS,
license=LICENSE,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
packages=PACKAGES,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
classifiers=CLASSIFIERS,
zip_safe=False # the package can run out of an .egg file
)