-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (30 loc) · 1012 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
import setuptools
setuptools.setup(
name="doe",
version="0.1.3",
url="https://github.com/pawanaichra/doe",
author="Pawan Aichra",
author_email="[email protected]",
description="A simple library for design of experiments and analysis in Python",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords=[
'DOE',
'design of experiments',
'experimental design',
'analysis of experiments',
'crd rcbd latin square'
],
license='MIT',
include_package_data=True,
packages=setuptools.find_packages(),
install_requires=['numpy', 'pandas', 'scipy', 'PTable'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Mathematics',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
],
)