-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (40 loc) · 1.64 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
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
import sys
if not sys.version_info[0] == 3:
sys.exit("Sorry, only Python 3 is supported")
setup(name='fastsubtrees',
version='2.1',
description='Tree representation for fast subtree queries',
long_description=readme(),
long_description_content_type="text/markdown",
url='https://github.com/ggonnella/fastsubtrees',
keywords="bioinformatics genomics taxonomy trees",
author='Giorgio Gonnella and Aman Modi and others (see CONTRIBUTORS)',
author_email='[email protected]',
license='ISC',
# see https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Software Development :: Libraries',
],
packages=find_packages(),
scripts=['bin/fastsubtrees'],
zip_safe=False,
include_package_data=True,
install_requires=['tqdm>=4.57.0', 'loguru>=0.5.1', 'docopt>=0.6.2',
"schema>=0.7.4", "sh>=1.14.2", "ntdownload>=1.6"],
test_suite="pytest",
tests_require=['pytest', 'pytest-console-scripts', 'sh', 'pytest-cov'],
)