-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
39 lines (37 loc) · 1.43 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
from setuptools import setup, find_packages
with open("README.rst", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="cinnamon",
version="0.2.1",
author="Yohann Le Faou",
author_email="[email protected]",
description="A monitoring tool for machine learning systems that focus on data drift",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/zelros/cinnamon",
project_urls={
"Source Code": "https://github.com/zelros/cinnamon",
"Bug Tracker": "https://github.com/zelros/cinnamon/issues",
},
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=find_packages(where="src"),
license="MIT",
python_requires=">=3.7",
install_requires=["pandas>=1.0",
"scikit-learn>=1.0",
"xgboost>=1.4",
"catboost>=1.0"],
extras_require={"graphs": ["matplotlib>=3.4.3", "treelib>=1.6.1"]},
keywords=["data drift", "covariate shift", "concept drift", "monitoring",
"adversarial learning", "machine learning"],
)