-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
37 lines (33 loc) · 1.25 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
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()
# Fetches package details from constants.py file
# name, version, author, url, author_email
with open('optbayesexpt/constants.py') as f:
exec(f.read())
setup(name=name,
version=version,
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=url,
author=author,
author_email=author_email,
packages=find_packages()
)