forked from Garve/scikit-bonus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (41 loc) · 1.23 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
"""Setup file."""
import setuptools
import skbonus
base_packages = [
"scikit-learn>=0.24.0",
"pandas>=1.2.1",
"numpy>=1.18.5",
"scipy>=1.5.0",
]
test_packages = [
"flake8>=3.8.4",
"pytest>=6.2.2",
"black>=20.8b1",
"pre-commit>=2.10.0",
"pydocstyle>=5.1.1",
]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="scikit-bonus",
version=skbonus.__version__,
author="Robert Kübler",
author_email="[email protected]",
description="Extending scikit-learn with various useful things.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Garve/scikit-bonus",
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
python_requires=">=3.7",
install_requires=base_packages,
extras_require={"test": test_packages},
)