-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
51 lines (48 loc) · 1.75 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
from setuptools import setup
install_requires = ["numpy", "pandas", "scipy"]
setup_requires = [
"pytest-runner",
"pytest",
"scikit-learn>=0.24.0",
"joblib",
"scipy",
"pandas",
]
tests_require = ["scikit-learn>=0.24.0", "pytest", "joblib", "black", "click"]
setup(
name="gap-stat",
version="2.0.3",
author="Miles Granger",
maintainer="Miles Granger",
author_email="[email protected]",
maintainer_email="[email protected]",
keywords="kmeans unsupervised learning machine-learning clustering",
description="Python implementation of the gap statistic with optional Rust optimizations.",
long_description="Uses the gap statistic method by Tibshirani, Walther, Hastie to suggest n_clusters.",
packages=["gap_statistic"],
license="MIT",
url="https://github.com/milesgranger/gap_statistic",
zip_safe=False,
setup_requires=setup_requires,
install_requires=install_requires,
tests_require=tests_require,
test_suite="tests",
include_package_data=True,
extras_require={"rust": ["gapstat-rs"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Rust",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
],
)