forked from sanger-pathogens/gff3toembl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 928 Bytes
/
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
import os
import glob
import multiprocessing
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='gff3toembl',
version='1.0.9',
description='Convert a GFF3 file to EMBL format for submission',
long_description=read('README.md'),
packages = find_packages(),
author='Andrew J. Page',
author_email='[email protected]',
url='https://github.com/sanger-pathogens/gff3toembl',
scripts=glob.glob('scripts/*'),
test_suite='nose.collector',
tests_require=['nose >= 1.3', 'mock'],
license='GPLv3',
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPLv3)",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)