-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 670 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 670 Bytes
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
from io import open
from setuptools import setup, find_packages
def read(fname, encoding='utf-8'):
with open(fname, encoding=encoding) as f:
return f.read()
setup(
name='ExperimentsPyDesign',
packages=find_packages(),
version='0.1.0',
description='Experimental Designs in Python with additional tooling',
author='Josiah McMillan',
license='MIT',
long_description=read('README.md'),
long_description_content_type='text/markdown',
install_requires=['numpy', 'scipy'],
keywords=[
'design of experiments',
'experimental design',
'optimization',
'statistics',
'python'
],
)