-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (38 loc) · 1.23 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
#!/usr/bin/python
import os
import setuptools
def readme():
with open('README.md') as f:
return f.read()
def get_requirements_filename():
return "REQUIREMENTS.txt"
install_requires = [
line.rstrip() for line in open(os.path.join(os.path.dirname(__file__), get_requirements_filename()))
]
setuptools.setup(
name='antenna',
version='0.0.10',
description='A software package for identifying sgRNA reads in next-generation sequencing data',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research'
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
],
url='http://github.com/broadinstitute/antenna',
author='Nick Barkas',
license='BSD (3-Clause)',
packages=['antenna'],
install_requires=install_requires,
entry_points={
'console_scripts': [
'antenna_count_reads=antenna.antenna_count_reads:main',
'antenna_tag_reads=antenna.antenna_tag_reads:main',
'antenna_generate_report=antenna.antenna_generate_report:main',
],
},
include_package_data=True,
zip_safe=False
)