-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 808 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 808 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
import setuptools
from distutils.core import setup
setup(name='grabseqs',
version='1.0.0',
description='Easily download reads from next-gen sequencing repositories like NCBI SRA',
author='Louis J Taylor',
author_email='l'+'ouist'+'@'+'u'+'penn.edu',
url='https://github.com/louiejtaylor/grabseqs',
packages=['grabseqslib'],
license='MIT License',
entry_points={'console_scripts': [
'grabseqs = grabseqslib:main'
]},
install_requires=[
'requests',
'argparse',
'pandas>=2'
],
classifiers = ['Intended Audience :: Science/Research',
'Environment :: Console',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',],
py_modules = ['utils','sra','mgrast']
)