-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (40 loc) · 1.56 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
"""Setup script for the adapt distribution using Distutils.
"""
from setuptools import find_packages
from setuptools import setup
import adapt
__author__ = 'Hayden Metsky <hmetsky@broadinstitute.org>, Priya P. Pillai <ppillai@broadinstitute.org>'
with open("README.md", "r", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
# There is a PyPi package called 'adapt' already, so renamed for PyPi
# Does not affect the Bioconda package name
setup(name='adapt-diagnostics',
description='Tools to design guides for diagnostics',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Hayden Metsky',
author_email='hmetsky@broadinstitute.org',
maintainer='Priya P. Pillai',
maintainer_email='ppillai@broadinstitute.org',
url="https://github.com/broadinstitute/adapt",
version=adapt.__version__,
packages=find_packages(),
package_data={
"adapt": ["models/*/*/*/assets.extra/*", "models/*/*/*/variables/*", "models/*/*/*/*", "models/*/*/*"],
},
install_requires=['numpy>=1.16.0,<1.19.0', 'scipy==1.4.1', 'tensorflow==2.3.2'],
extras_require={
'AWS': ['boto3>=1.14.54', 'botocore>=1.17.54'],
'thermo': ['primer3-py==0.6.1']
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
scripts=[
'bin/design.py',
'bin/design_naively.py',
'bin/analyze_coverage.py',
'bin/pick_test_targets.py'
])