-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (38 loc) · 1.33 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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import codecs
from setuptools import setup, find_packages
setup(
name='gnomic',
version='1.0.1',
packages=find_packages(exclude=['*tests*']),
license='Apache',
author='Lars Schöning',
author_email='[email protected]',
description='A grammar for describing microbial genotypes and phenotypes',
long_description=codecs.open('README.rst', encoding='utf-8').read(),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
install_requires=[
'grako==3.18.1',
'six>=1.8.0'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'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 :: Bio-Informatics',
],
extras_require={
'docs': ['Sphinx', 'sphinx-rtd-theme'],
}
)