-
Notifications
You must be signed in to change notification settings - Fork 175
/
setup.py
82 lines (69 loc) · 2.09 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import os
import sys
from setuptools import setup
from setuptools.command.test import test as TestCommand
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
long_description = read('README.md')
install_requires = [
'appdirs',
'requests >= 2.4.3',
'tqdm'
]
tests_require = [
'flake8',
'pytest',
'coverage',
'pytest-cov',
'requests-mock',
'pytest-mock',
]
def read_version():
for line in open(os.path.join('ncbi_genome_download', '__init__.py'), 'r'):
if line.startswith('__version__'):
return line.split('=')[-1].strip().strip("'")
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
errcode = pytest.main(self.test_args)
sys.exit(errcode)
setup(
name='ncbi-genome-download',
version=read_version(),
author='Kai Blin',
author_email='[email protected]',
description='Download genome files from the NCBI FTP server.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=install_requires,
tests_require=tests_require,
cmdclass={'test': PyTest},
entry_points={
'console_scripts': [
'ncbi-genome-download=ncbi_genome_download.__main__:main',
'ngd=ncbi_genome_download.__main__:main'
],
},
packages=['ncbi_genome_download'],
url='https://github.com/kblin/ncbi-genome-download/',
license='Apache Software License',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
extras_require={
'testing': tests_require,
},
scripts=[
'contrib/gimme_taxa.py',
],
)