-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 890 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
# Copyright 2022 Maya Bhat
# (see accompanying license files for details).
from setuptools import setup
setup(name='doe',
version='0.0.1',
description='doe, model, and analysis',
url='',
maintainer='Maya Bhat',
maintainer_email='mayabhat@andrew.cmu.edu',
license='GPL',
platforms=['linux'],
packages=['doe'],
setup_requires=[],
data_files=[],
install_requires=['autograd', 'pyDOE2', 'sklearn', 'matplotlib', 'numpy', 'pycse', 'pandas', 'xlrd', 'openpyxl'],
long_description='''A module to perform Design of Experiments design, model building, and statistical analysis
''')
# (shell-command "python setup.py register") to setup user
# to push to pypi - (shell-command "python setup.py sdist upload")
# Set TWINE_USERNAME and TWINE_PASSWORD in .bashrc
# python setup.py sdist bdist_wheel
# twine upload dist/*