-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
37 lines (30 loc) · 1.13 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
"""small RNA-seq pipeline"""
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
with open("requirements.txt", "r") as f:
install_requires = [x.strip() for x in f.readlines() if not x.startswith("#")]
setup(name='seqcluster',
version='1.2.10',
description='Small RNA-seq pipeline',
long_description=readme(),
long_description_content_type="text/markdown",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
keywords='RNA-seq miRNA snoRNA NGS',
url='http://github.com/lpantano/seqcluster',
author='Lorena Pantano',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
test_suite='nose',
entry_points={
'console_scripts': ['seqcluster=seqcluster.command_line:main', 'seqcluster_install=seqcluster.install:main'],
},
package_data={'seqcluster.templates': ['*']},
include_package_data=True,
zip_safe=False)