forked from asitang/sklearn-hierarchical-classification
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·32 lines (30 loc) · 880 Bytes
/
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
#!/usr/bin/env python
from setuptools import find_packages, setup
project = "sklearn-hierarchical-classification"
version = "1.0.0"
setup(
name=project,
version=version,
description="Hierarchical classification interface extensions for scikit-learn",
author="Globality Engineering",
author_email="[email protected]",
url="https://github.com/globality-corp/sklearn-hierarchical-classification",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
zip_safe=False,
install_requires=[
"networkx>=2.0",
"numpy>=1.13.1",
"scikit-learn>=0.19.0",
"scipy>=0.19.1",
"six>=1.10.0",
],
setup_requires=[
"nose>=1.3.7",
],
tests_require=[
"coverage>=3.7.1",
"mock>=2.0.0",
"PyHamcrest>=1.9.0",
],
)