-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (52 loc) · 1.58 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = [
'pandas',
'matplotlib',
'seaborn',
'jinja2',
'scipy',
'numpy',
]
test_requirements = [
'pandas',
'matplotlib',
'seaborn',
'jinja2',
'scipy',
'numpy',
'unittest',
]
__version__ = None
with open('src/CRISPRlungo/CRISPRlungoCore.py') as fin:
for line in fin:
if line.startswith('__version__'):
version_line = line.replace(" "," ")
version_els = version_line.split(" ")
__version__ = version_els[2].replace('"','').replace("'","")
setup(
name='CRISPRlungo',
author="Kendell Clement",
author_email='[email protected]',
description="CRISPRlungo enables analysis of single-anchor amplicon sequencing to quantify complex genome editing outcomes.",
version=__version__,
entry_points={
'console_scripts': [
'CRISPRlungo=CRISPRlungo.cli:crisprlungo',
'CRISPRlungoBatch=CRISPRlungo.cli:batch',
'CRISPRlungoCompare=CRISPRlungo.cli:compare',
],
},
install_requires=requirements,
long_description=readme,
include_package_data=True,
keywords='CRISPRlungo',
packages=find_packages(where='src',include=['CRISPRlungo', 'CRISPRlungo.*']),
package_dir={'':'src'},
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/kclem/crisprlungo',
zip_safe=False,
)