-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.32 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
from setuptools import setup
with open("README.md","r") as fh:
ld = fh.read()
setup(
name = 'LCS-DIVE',
packages = ['LCSDIVE'],
version = '1.0.10',
license='License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
description = 'Learning Classifier System Discovery and Visualization Environment',
long_description_content_type="text/markdown",
author = 'Robert Zhang, Ryan J. Urbanowicz',
author_email = 'robertzh@seas.upenn.edu,ryanurb@upenn.edu',
url = 'https://github.com/UrbsLab/LCS-Visualization-Pipeline',
keywords = ['machine learning','data analysis','data science','learning classifier systems','dive'],
install_requires=['numpy','pandas','scikit-learn','seaborn','skrebate','scikit-ExSTraCS','networkx','matplotlib','scipy','sklearn','pygame','fastcluster'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
long_description=ld
)