-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 806 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
py_version = 2.5
Version=0.1
if float("%d.%d" % sys.version_info[:2]) < py_version:
sys.stderr.write("Your Python version %d.%d.%d is not supported.\n" % sys.version_info[:3])
sys.stderr.write("cloudminer requires Python %f or newer.\n" % (py_version))
sys.exit(1)
setup(name='cloudminer',
version=Version,
description='An persistnace API for the cloudyvents API.',
author='Nimbus Team',
author_email='[email protected]',
url='http://www.nimbusproject.org/',
packages=[ 'cloudminer', 'cloudminer.tests' ],
long_description="""
""",
license="Apache2",
install_requires = ["nose", "cloudyvents"],
)