forked from bwghughes/spc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 996 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
from pip.req import parse_requirements
from setuptools import setup, find_packages
import sys, os
here = os.path.abspath(os.path.dirname(__file__))
version = open('version', 'r').read()
install_reqs = parse_requirements(os.path.join(here, 'requirements.txt'))
install_requires = [str(ir.req) for ir in install_reqs]
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,
install_requires=install_requires,
entry_points={
'console_scripts':
['spcchart=spcchart:main']
}
)