-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
35 lines (32 loc) · 971 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
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
import sys, os
here = os.path.abspath(os.path.dirname(__file__))
version = open('version', 'r').read()
install_requires = [
"numpy==1.7.1",
"pygal==1.4.6",
"shortuuid==0.4",
"wsgiref==0.1.2",
]
setup(name='spcchart',
version=version,
description="SPC Charts For Humans",
long_description='Read more here at: https://statistical-process-control-charts.readthedocs.org/en/latest/',
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
keywords='statistics, spc, chart, tool, process control',
author='Ben Hughes',
author_email='[email protected]',
url='spc.io',
license='BSD',
packages=['spcchart'],
include_package_data=True,
zip_safe=False,
setup_requires=['numpy==1.7.1'],
install_requires=install_requires,
entry_points={
'console_scripts':
['spcchart=spcchart:main']
}
)