-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
47 lines (38 loc) · 1.31 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
45
46
47
"""small RNA-seq annotation"""
import os
from setuptools import setup, find_packages
version = '0.4.29'
url = 'http://github.com/mirtop/mirtop'
def readme():
with open('README.md') as f:
return f.read()
def write_version_py():
version_py = os.path.join(os.path.dirname(__file__), 'mirtop',
'version.py')
with open(version_py, "w") as out_handle:
out_handle.write("\n".join(['__version__ = "%s"' % version,
'__url__ = "%s"' % url]))
write_version_py()
setup(name='mirtop',
version=version,
description='Small RNA-seq annotation',
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
"Programming Language :: Python :: 3",
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
keywords='RNA-seq miRNA isomiRs annotation',
url=url,
author='Lorena Pantano',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
test_suite='nose',
entry_points={
'console_scripts': ['mirtop=mirtop.command_line:main'],
},
include_package_data=True,
zip_safe=False)