forked from python-oca/python-oca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 1 KB
/
setup.py
File metadata and controls
34 lines (29 loc) · 1 KB
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
# -*- coding: UTF-8 -*-
__version__ = '4.10.0-a1'
import os
#from distutils.core import setup
from setuptools import setup
#borrowed from Pylons project
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except IOError:
README = CHANGES = ''
setup(name = 'oca',
version=__version__,
description='Python Bindings for XMLRPC OpenNebula Cloud API',
long_description=README + '\n\n' + CHANGES,
test_suite = 'nose.collector',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
keywords='opennebula cloud xmlrpc',
author=u'Łukasz Oleś, Matthias Schmitz, Michael Schmidt',
url='https://github.com/python-oca/python-oca',
license='Apache License 2.0',
packages=['oca'],
)