forked from JohnUrban/fast5tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 911 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 911 Bytes
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
import sys
from glob import glob
from setuptools import setup
if sys.version_info[0] != 2 or sys.version_info[1] < 7:
sys.exit("Sorry, only Python 2.7+ supported.")
setup(
name="fast5tools",
version="0.4",
description="Tools for working with fast5 files (nanopore data).",
author="John Urban",
author_email="mr.john.urban@gmail.com",
url="https://github.com/JohnUrban/fast5tools",
install_requires=[
"biopython",
"h5py",
"matplotlib",
"numpy",
],
packages=["fast5tools", "tests"],
scripts=glob("bin/*"),
test_suite="tests",
zip_safe = False,
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Scientific/Engineering :: Bio-Informatics']
)