forked from HadrienG/taxadb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (31 loc) · 1.04 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from taxadb.version import __version__
url = 'https://github.com/HadrienG/taxadb'
with open('README.md') as f:
long_description = f.read()
setup(
name='taxadb',
version=__version__,
description='locally query the ncbi taxonomy',
long_description=long_description,
long_description_content_type='text/markdown',
url=url,
download_url=url + '/tarball/' + __version__,
author='Hadrien Gourlé, Juliette Hayer, Emmanuel Quevillon',
author_email='[email protected], [email protected],\
license='MIT',
packages=find_packages(exclude=['tests']),
tests_require=['nose', 'nose-testconfig'],
install_requires=['requests', 'peewee>=3.8.2', 'tqdm'],
# Allow PostgreSQL and MySQL as option
extras_require={
'postgres': ["psycopg2>=2.6.2"],
'mysql': ["PyMySQL>=0.7.10"],
},
entry_points={
'console_scripts': ['taxadb = taxadb.app:main'],
}
)