forked from carlosp420/bold_retriever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (34 loc) · 1.19 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import find_packages, setup
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='bold_retriever',
version='1.0.0',
description='It queries the BOLD database to get identification of taxa ' \
'based on COI sequences',
long_description=readme + '\n\n' + history,
author='Carlos Pena',
author_email='[email protected]',
maintainer='Carlos Pena',
url='https://github.com/carlosp420/bold_retriever',
packages=find_packages(exclude=["tests"]),
include_package_data=True,
license="GPL v3",
zip_safe=False,
keywords='bold_retriever',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Environment :: Console',
'Programming Language :: Python :: 2.7',
],
)