forked from ealcobaca/pymfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
86 lines (61 loc) · 1.83 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
77
78
79
80
81
82
83
84
85
86
"""Setup for pymfe package."""
import setuptools
import os
import pymfe
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
NAME = "pymfe"
VERSION = pymfe.__version__
DESCRIPTION = "Meta-feature Extractor"
LICENSE = "MIT"
URL = "https://github.com/ealcobaca/pymfe"
MAINTAINER = "Edesio Alcobaça, Felipe Alves Siqueira"
MAINTAINER_EMAIL = "edesio@usp.br, felipe.siqueira@usp.br"
DOWNLOAD_URL = "https://github.com/ealcobaca/pymfe/releases"
CLASSIFIERS = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
INSTALL_REQUIRES = [
"numpy",
"scipy",
"scikit-learn",
"patsy",
"pandas",
"statsmodels",
"texttable",
"tqdm",
"igraph>=0.10.1",
"gower",
]
EXTRAS_REQUIRE = {
"code-check": ["pytest", "mypy", "liac-arff", "flake8", "pylint"],
"tests": ["pytest", "pytest-cov", "pytest-xdist", "liac-arff"],
"docs": ["sphinx", "sphinx-gallery", "sphinx_rtd_theme", "numpydoc", "liac-arff"],
}
setuptools.setup(
name=NAME,
version=VERSION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license=LICENSE,
url=URL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
download_url=DOWNLOAD_URL,
packages=setuptools.find_packages(),
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
)