-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·37 lines (35 loc) · 1.14 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
#!/usr/bin/env python
#
# setuptools setup script for tardis
from setuptools import setup, find_packages
setup(name='tardis',
use_scm_version=True,
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
description='Front-end for bioinformatics HPC job submission',
author='Alan McCulloch',
author_email='[email protected]',
url='https://github.com/AgResearch/tardis',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
packages=find_packages(),
entry_points={
'console_scripts': [
'tardis = tardis.run:tardis_main'
],
},
package_data={
'doc': ['doc/tardis.pdf'],
'test': ['*'],
},
license='GPLv2',
install_requires=[
],
#python_requires='>=2.7, <3',
)