-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 1.16 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
import setuptools
import sys
if sys.version_info < (3, 0):
raise EnvironmentError('Please install using pip3 or python3')
setuptools.setup(author='Chris Rosenthal',
author_email='crosenth@gmail.com',
description='Ribosomal RNA Allele Tree',
keywords=['ncbi', 'rrndb', 'genetics', 'genomics'],
name='rrat',
py_modules=['rrat'],
entry_points={
'console_scripts': {'rrat = rrat:main'}},
version=0.6,
url='https://github.com/crosenth/rrat',
license='GPLv3',
classifiers=[
'License :: OSI Approved :: '
'GNU General Public License v3 (GPLv3)',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: '
'GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only'])