-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
98 lines (92 loc) · 3.13 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
"""Setup script for ``dms_tools2``.
Written by Jesse Bloom.
"""
import sys
import os
import subprocess
import re
import glob
try:
from setuptools import setup
from setuptools import Extension
except ImportError:
raise ImportError("You must install `setuptools`")
if not (sys.version_info[0] == 3 and sys.version_info[1] >= 6):
raise RuntimeError('dms_tools2 requires Python 3.6 or higher.\n'
'You are using Python {0}.{1}'.format(
sys.version_info[0], sys.version_info[1]))
# get metadata, which is specified in another file
metadata = {}
with open('dms_tools2/_metadata.py') as f:
lines = f.readlines()
for dataname in ['version', 'author', 'author_email', 'url']:
for line in lines:
entries = line.split('=')
assert len(entries) == 2, "Failed parsing metadata:\n{0}".format(line)
if entries[0].strip() == '__{0}__'.format(dataname):
if dataname in metadata:
raise ValueError("Duplicate metadata for {0}".format(dataname))
else:
metadata[dataname] = entries[1].strip()[1 : -1]
assert dataname in metadata, "Failed to find metadata {0}".format(dataname)
with open('README.rst') as f:
readme = f.read()
# main setup command
setup(
name = 'dms_tools2',
version = metadata['version'],
author = metadata['author'],
author_email = metadata['author_email'],
url = metadata['url'],
download_url = 'https://github.com/jbloomlab/dms_tools2/tarball/{0}'.format(
metadata['version']), # assumes tagged version is on GitHub
description = 'Deep mutational scanning (DMS) analysis tools.',
long_description = readme,
license = 'GPLv3',
install_requires = [
'attrs>=17.4.0',
'biopython>=1.68',
'pysam>=0.13',
'pandas>=0.23,<1.0',
'numpy>=1.16,<1.20', # https://github.com/numpy/numpy/issues/18355
'IPython>=5.1',
'jupyter>=1.0.0',
'matplotlib>=2.1.1,<3.3',
'plotnine>=0.3,<0.7',
'mizani<0.7',
'natsort>=5.0.3',
'pystan>=2.19,<3',
'scipy>=1.0',
'seaborn>=0.8',
'phydms>=2.4.1',
'statsmodels>=0.8',
'regex>=2.4.153',
'packaging',
'umi_tools>=1.0.0',
],
extras_require = {
'rplot':[
'rpy2>=2.9.1',
'tzlocal', # required by rpy2 but not auto installed in 2.9.3
]
},
platforms = 'Linux and Mac OS X.',
packages = ['dms_tools2'],
package_dir = {'dms_tools2':'dms_tools2'},
package_data = {'dms_tools2':['rplot_Rcode.R']},
scripts = [
'scripts/dms2_bcsubamp',
'scripts/dms2_batch_bcsubamp',
'scripts/dms2_prefs',
'scripts/dms2_batch_prefs',
'scripts/dms2_diffsel',
'scripts/dms2_batch_diffsel',
'scripts/dms2_fracsurvive',
'scripts/dms2_batch_fracsurvive',
'scripts/dms2_logoplot',
],
ext_modules = [
Extension('dms_tools2._cutils', ['dms_tools2/_cutils.c'],
extra_compile_args=["-Wno-error=declaration-after-statement"])
],
)