forked from NBISweden/EMBLmyGFF3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (21 loc) · 876 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
#!/usr/bin/env python2.7
from setuptools import setup, find_packages
setup(
name='EMBLmyGFF3',
version='1.2.1',
description='An efficient way to convert gff3 annotation files into EMBL format ready to submit',
url='https://github.com/NBISweden/EMBLmyGFF3',
download_url='https://github.com/NBISweden/EMBLmyGFF3/archive/v1.2.1.tar.gz',
author='Martin Norling, Niclas Jareborg, Jacques Dainat',
license='GPL-3.0',
packages=find_packages(),
install_requires=['biopython==1.67', 'bcbio-gff==0.6.4'],
include_package_data=True,
entry_points={
'console_scripts': ['EMBLmyGFF3 = EMBLmyGFF3:main',
'EMBLmyGFF3-augustus-example = examples.augustus_example:main',
'EMBLmyGFF3-maker-example = examples.maker_example:main',
'EMBLmyGFF3-prokka-example = examples.prokka_example:main',
],
}
)