-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
40 lines (33 loc) · 1.17 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
35
36
37
38
39
40
"""dexpy: Design of Experiments (DOE) for Python.
dexpy is a DOE package based on the Design-Expert (r) software from Stat-Ease, Inc.
See: https://statease.github.io/dexpy
"""
from setuptools import setup
VERSION = '0.12'
DOCLINES = (__doc__ or '').split("\n")
CLASSIFIERS = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
]
def run_setup():
setup(
name='dexpy',
version=VERSION,
description=DOCLINES[0],
long_description="\n".join(DOCLINES[2:]),
classifiers=CLASSIFIERS,
author='Hank Anderson, Martin Bezener',
author_email='[email protected]',
license='apache',
url='https://statease.github.io/dexpy/',
download_url = 'https://github.com/statease/dexpy/releases',
packages=['dexpy', 'dexpy.tests'],
install_requires=['numpy', 'patsy', 'pandas', 'scipy'],
)
run_setup()