-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
59 lines (55 loc) · 1.68 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import re
import sys
from setuptools import find_packages, setup
with open("pyroed/__init__.py") as f:
for line in f:
match = re.match('^__version__ = "(.*)"$', line)
if match:
__version__ = match.group(1)
break
try:
long_description = open("README.md", encoding="utf-8").read()
except Exception as e:
sys.stderr.write("Failed to read README.md: {}\n".format(e))
sys.stderr.flush()
long_description = ""
setup(
name="pyroed",
version=__version__,
description="Sequence design using Pyro",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(include=["pyroed"]),
package_data={"pyroed": ["py.typed"]},
url="https://github.com/pyro-ppl/pyroed",
author="Pyro team at the Broad Institute of MIT and Harvard",
author_email="[email protected]",
install_requires=[
"matplotlib",
"pandas",
"pyro-ppl>=1.7",
"scipy",
],
extras_require={
"test": [
"black",
"isort>=5.0",
"flake8",
"pytest>=5.0",
"mypy>=0.812",
],
},
python_requires=">=3.7",
keywords="optimal experimental design pyro",
license="Apache 2.0",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)