forked from flemmerich/pysubgroup
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
38 lines (37 loc) · 1.43 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
from setuptools import setup
setup(
name='pysubgroup',
version='0.7.2',
packages=['pysubgroup', 'pysubgroup.tests'],
package_data={'pysubgroup': ['data/credit-g.arff', 'data/titanic.csv']},
url='http://florian.lemmerich.net/pysubgroup',
license='',
author='Florian Lemmerich, Felix Stamm',
author_email='[email protected]',
description='pysubgroup is a Python library for the data analysis task of subgroup discovery.',
install_requires=[
'pandas>=0.24.0',
'scipy',
'numpy',
'sklearn',
'matplotlib'
],
tests_require=['pytest'],
python_requires='>=3.6',
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
('Programming Language :: Python :: '
'Implementation :: CPython')
],
)