-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
35 lines (30 loc) · 943 Bytes
/
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
#!/usr/bin/env python
from __future__ import division
__author__ = "Jai Ram Rideout"
__copyright__ = "Copyright 2012-2013, The Clout Project"
__credits__ = ["Jai Ram Rideout"]
__license__ = "GPLv2"
__version__ = "0.9-dev"
__maintainer__ = "Jai Ram Rideout"
__email__ = "[email protected]"
from sys import stderr, version_info
from distutils.core import setup
long_description = """
Clout: Cloud-based Automated Testing
http://qiime.org/clout
"""
if version_info < (2, 5):
print >> stderr, "Error: Clout requires Python 2.5 or newer."
exit(1)
setup(name='Clout',
version=__version__,
license=__license__,
description='Cloud-based Automated Testing',
long_description=long_description,
author=__author__,
author_email=__email__,
maintainer=__maintainer__,
maintainer_email=__email__,
url='http://qiime.org/clout',
packages=['clout'],
scripts=['scripts/clout'])