-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (37 loc) · 1.25 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
from os import path
from setuptools import setup
import pprodigal
setup(
name='pprodigal',
version=pprodigal.__version__,
description='PProdigal: Parallelized gene prediction based on Prodigal.',
keywords=['bioinformatics', 'gene prediction'],
long_description=open('README.txt').read(),
license='MIT',
author='Sebastian Jaenicke',
author_email='[email protected]',
url='https://github.com/sjaenick/pprodigal',
packages=['pprodigal'],
python_requires='>=3.0',
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'pprodigal=pprodigal.pprodigal:main'
]
},
classifiers=[
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English'
],
project_urls={
'Bug Reports': 'https://github.com/sjaenick/pprodigal/issues',
'Source': 'https://github.com/sjaenick/pprodigal'
},
)