-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
44 lines (41 loc) · 1.46 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
38
39
40
41
42
43
44
import re
from setuptools import setup
def get_property(prop, project):
result = re.search(r'{}\s*=\s*[\'"]([^\'"]*)[\'"]'.format(prop),
open(project + '/__init__.py').read())
return result.group(1)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="smcpy",
version=get_property('__version__', 'smcpy'),
author="Patrick Leser",
author_email="[email protected]",
description="A package for performing uncertainty quantification using a parallelized sequential Monte Carlo sampler.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nasa/SMCPy",
packages=["smcpy",
"smcpy.smc",
"smcpy.mcmc",
"smcpy.utils"],
install_requires=['numpy',
'h5py',
'matplotlib',
'tqdm',
'scipy',
'pandas',
'seaborn',
'pytest',
'pytest-mock'],
python_requires='~=3.4',
classifiers=[
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha"
],
)