-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.18 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import io
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pygustus',
version='0.8.3',
description='Python wrapper for AUGUSTUS.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Daniel Honsel',
author_email='[email protected]',
url='https://github.com/Gaius-Augustus/pygustus',
download_url='https://github.com/Gaius-Augustus/pygustus/zipball/master',
packages=find_packages(),
package_data={'pygustus': ['options/parameters.json', 'config.json']},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
install_requires=[
"biopython",
],
)