-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
35 lines (32 loc) · 1.38 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
from setuptools import setup
VERSION = '0.1.6'
setup(
name='python-controlchart',
packages=['controlchart'],
version=VERSION,
description='Creation of control charts with matplotlib',
author='Torsten Feld',
author_email='torsten@torsten-feld.de',
url='https://github.com/torstenfeld/python-controlchart',
download_url='https://github.com/torstenfeld/python-controlchart/tarball/' + VERSION,
keywords=['statistics', 'spc', 'chart', 'tool', 'process control', 'shewhart', 'control chart'],
requires=['numpy'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Information Analysis',
'Intended Audience :: Customer Service',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Information Technology',
'Intended Audience :: Manufacturing',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry'
],
)