forked from arq5x/poretools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1.46 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
import os
import sys
from setuptools import setup
version_py = os.path.join(os.path.dirname(__file__), 'poretools', 'version.py')
version = open(version_py).read().strip().split('=')[-1].replace('"','')
long_description = """
``poretools`` is a toolset for working with nanopore sequencing data'
"""
with open("requirements.txt", "r") as f:
install_requires = [x.strip() for x in f.readlines()]
setup(
name="poretools",
version=version,
install_requires=install_requires,
requires = ['python (>=2.7, <3.0)'],
packages=['poretools',
'poretools.scripts'],
author="Nick Loman and Aaron Quinlan",
description='A toolset for working with nanopore sequencing data',
long_description=long_description,
url="http://poretools.readthedocs.org",
package_dir = {'poretools': "poretools"},
package_data = {'poretools': []},
zip_safe = False,
include_package_data=True,
#scripts = ['poretools/scripts/poretools'],
entry_points = {
'console_scripts' : [
'poretools = poretools.poretools_main:main',
],
},
author_email="[email protected]",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Scientific/Engineering :: Bio-Informatics']
)