forked from sara-nl/python-oca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 1.03 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
# -*- coding: UTF-8 -*-
__version__ = '4.15.anjuke16'
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'])