-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (46 loc) · 1.53 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
"""Loaders for classic datasets commonly used in Machine Learning.
See:
https://github.com/jangop/classicdata
"""
import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="classicdata",
version="0.1.0-alpha3",
description="Loaders for classic datasets commonly used in Machine Learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jangop/classicdata",
author="Jan Philip Göpfert",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
],
keywords="machine learning",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.9, <4",
install_requires=[
"loguru",
"scikit-learn",
"numpy",
"appdirs",
"scipy",
"tabulate",
],
extras_require={
"dev": ["check-manifest", "black", "pylint"],
"test": ["coverage", "pytest", "black", "pylint"],
},
project_urls={
"Bug Reports": "https://github.com/jangop/classicdata/issues",
"Source": "https://github.com/jangop/classicdata",
},
)