-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (40 loc) · 1.44 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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import codecs
from setuptools import setup, find_packages
setup(
name='gbgb',
version='0.1.0',
packages=find_packages(exclude=['*tests*', 'gbgb.export*']),
url='https://github.com/biosustain/goodbye-genbank',
license='Apache',
author='Lars Schöning',
author_email='[email protected]',
description='Goodbye, GenBank is a package for use with Biopython that gives feature annotations from '
'GenBank records a new and better life.',
long_description=codecs.open('README.rst', encoding='utf-8').read(),
install_requires=[
'biopython>=1.66',
'six>=1.8.0'
],
test_suite='nose.collector',
tests_require=[
'nose>=1.1.2',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics'
]
)