-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
56 lines (49 loc) · 1.65 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
import pathlib
from setuptools import setup, find_packages
base_packages = ["scikit-learn>=1.0.0", "cleanlab>=2.0", "pandas>=1.3.3"]
docs_packages = [
"mkdocs==1.3.0",
"mkdocs-material==4.6.3",
"mkdocstrings==0.18.1",
"mktestdocs==0.1.2",
"mkdocstrings-python==0.6.6",
]
test_packages = [
"interrogate>=1.5.0",
"flake8>=3.6.0",
"pytest>=4.0.2",
"black>=19.3b0",
"pre-commit>=2.2.0",
"flake8-print>=4.0.0",
"whatlies==0.6.4",
]
all_packages = base_packages
dev_packages = all_packages + docs_packages + test_packages
setup(
name="doubtlab",
version="0.2.4",
author="Vincent D. Warmerdam",
packages=find_packages(exclude=["notebooks", "docs"]),
description="Don't Blindly Trust Your Labels",
long_description=pathlib.Path("README.md").read_text(),
long_description_content_type="text/markdown",
url="https://koaning.github.io/doubtlab/",
project_urls={
"Documentation": "https://koaning.github.io/doubtlab/",
"Source Code": "https://github.com/koaning/doubtlab/",
"Issue Tracker": "https://github.com/koaning/doubtlab/issues",
},
install_requires=base_packages,
extras_require={"dev": dev_packages},
license_files=("LICENSE",),
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)