File: setup.py

package info (click to toggle)
poretools 0.6.0%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 95,212 kB
  • sloc: python: 1,799; makefile: 109; sh: 98
file content (44 lines) | stat: -rw-r--r-- 1,450 bytes parent folder | download | duplicates (3)
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
import os
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('"','').strip()
print(version)
long_description = """
``poretools`` is a toolset for working with nanopore sequencing data'
"""

HERE = os.path.dirname(__file__)

with open(os.path.join(HERE, "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="arq5x@virginia.edu",
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Science/Research',
        'License :: OSI Approved :: GNU General Public License (GPL)',
        'Topic :: Scientific/Engineering :: Bio-Informatics'
        ]
    )