-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 1.24 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
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_desc = fh.read()
setup(
name='zava',
version='0.0.2',
author='Jee Vang',
author_email='vangjee@gmail.com',
packages=find_packages(exclude=('*.tests', '*.tests.*', 'tests.*', 'tests')),
description='Parallel Coordinates with Grand Tour',
long_description=long_desc,
long_description_content_type='text/markdown',
url='https://github.com/oneoffcoder/zava',
keywords=' '.join(
['visualization', 'parallel coordinates', 'grand tour',
'statistics', 'dataframe', 'data', 'data mining',
'exploratory data visualization',
'machine learning', 'artificial intelligence', 'data science']),
install_requires=['scipy', 'numpy', 'pandas', 'matplotlib'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Development Status :: 5 - Production/Stable'
],
include_package_data=True,
test_suite='nose.collector'
)