-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (37 loc) · 1.63 KB
/
setup.py
File metadata and controls
39 lines (37 loc) · 1.63 KB
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
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as readme:
long_description = readme.read()
setup(
name='sci_analysis',
version='2.2.1',
description='An easy to use and powerful python-based data exploration and analysis tool',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
url='https://github.com/cmmorrow/sci-analysis',
license='MIT License',
author='chris morrow',
author_email='cmmorrow@gmail.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Manufacturing',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Visualization',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='statistics data EDA graphing visualization analysis scientific',
install_requires=['numpy', 'scipy', 'pandas', 'matplotlib', 'six'],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, >=3.5',
)