-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
23 lines (21 loc) · 899 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
from setuptools import setup, find_packages
setup(name='persimmon',
description='A visual dataflow language for sklearn',
author='Álvaro Bermejo',
author_email='[email protected]',
version='0.9.1',
url='http://github.com/AlvarBer/Persimmon',
download_url='https://github.com/AlvarBer/Persimmon/archive/v0.9.1.tar.gz',
license='MIT',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.5',
setup_requires=['Cython'],
install_requires=['Cython', 'Kivy', 'scikit-learn', 'pandas', 'fuzzywuzzy', 'pymitter'],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'])