-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.py
76 lines (66 loc) · 1.9 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
import os
from setuptools import setup, find_packages
import hulearn
base_packages = [
"scikit-learn>=0.23.2",
"pandas>=0.23.4",
"clumper>=0.2.5,<0.3.0",
"Shapely>=1.7.1",
"bokeh>=2.2.1,<3.0.0",
]
docs_packages = [
"mkdocs-material>=9.0.0",
"mkdocstrings==0.8.0",
]
test_packages = [
"flake8>=3.6.0",
"nbval>=0.9.1",
"pytest>=4.0.2",
"pytest-xdist>=1.32.0",
"black>=19.3b0",
"pytest-cov>=2.6.1",
"pytest-mock>=1.6.3",
"pre-commit>=1.18.3",
"nbval>=0.9.6",
"scikit-lego>=0.6.0",
"matplotlib>=3.0.2",
"mktestdocs==0.1.1",
]
util_packages = [
"jupyter>=1.0.0",
"jupyterlab>=0.35.4",
]
dev_packages = docs_packages + test_packages + util_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="human-learn",
version=hulearn.__version__,
description="natural intelligence benchmarks for scikit-learn",
author="Vincent D. Warmerdam",
packages=find_packages(exclude=["notebooks"]),
package_data={
"hulearn": [
"data/*.zip",
"images/*.png",
"static/*/*.css",
"static/*/*.js",
"static/*/*.html",
]
},
install_requires=base_packages,
extras_require={"docs": docs_packages, "dev": dev_packages, "test": test_packages},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"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",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)