-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
32 lines (29 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
from setuptools import setup, find_packages
import os
# Fetches description from README.rst file
with open(os.path.join(os.getcwd(), 'README.md'), "r") as f:
long_description = f.read()
setup(name='optbayesexpt',
version='1.2.0',
description="Optimal Bayesian Experimental Design",
long_description=long_description,
classifiers=[
"Intended Audience :: Science/Research",
"License :: Public Domain",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
'Development Status :: 4 - Beta'
],
install_requires=['numpy', 'scipy', 'matplotlib'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
keywords='bayesian measurement physics experimental design',
url='https://github.com/usnistgov/optbayesexpt/',
author='Bob McMichael',
author_email='[email protected]',
packages=find_packages()
)