-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
31 lines (26 loc) · 794 Bytes
/
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name = "nanoraw",
version = "0.5",
packages = ["nanoraw"],
install_requires = ['h5py', 'numpy', 'scipy'],
extras_require={'plot':['rpy2']},
author = "Marcus Stoiber",
author_email = "[email protected]",
description='Analysis of nanopore sequencing data.',
long_description = readme(),
license = "BSD",
keywords = "nanopore high-throughput sequencing correction genome",
url = "https://github.com/marcus1487/nanoraw",
entry_points={
'console_scripts': [
'nanoraw = nanoraw.__main__:main'
]
},
include_package_data=True,
test_suite='nose2.collector.collector',
tests_require=['nose2'],
)