|
3 | 3 |
|
4 | 4 | import os |
5 | 5 |
|
6 | | -#from distutils.core import setup |
| 6 | +# from distutils.core import setup |
7 | 7 | from setuptools import setup |
8 | 8 |
|
9 | | -#borrowed from Pylons project |
| 9 | +# borrowed from Pylons project |
10 | 10 | here = os.path.abspath(os.path.dirname(__file__)) |
11 | 11 | try: |
12 | 12 | README = open(os.path.join(here, 'README.rst')).read() |
13 | 13 | CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() |
14 | 14 | except IOError: |
15 | 15 | README = CHANGES = '' |
16 | 16 |
|
17 | | -setup(name = 'oca', |
18 | | - version=__version__, |
19 | | - description='Python Bindings for XMLRPC OpenNebula Cloud API', |
20 | | - long_description=README + '\n\n' + CHANGES, |
21 | | - test_suite = 'nose.collector', |
22 | | - classifiers=[ |
23 | | - 'Development Status :: 3 - Alpha', |
24 | | - 'License :: OSI Approved :: Apache Software License', |
25 | | - 'License :: OSI Approved :: Apache Software License', |
26 | | - 'Operating System :: OS Independent', |
27 | | - ], |
28 | | - keywords='opennebula cloud xmlrpc', |
29 | | - author=u'Łukasz Oleś, Matthias Schmitz, Michael Schmidt', |
30 | | - url='https://github.com/python-oca/python-oca', |
31 | | - license='Apache License 2.0', |
32 | | - packages=['oca'], |
33 | | -) |
34 | | - |
| 17 | +setup(name='oca', |
| 18 | + version=__version__, |
| 19 | + description='Python Bindings for XMLRPC OpenNebula Cloud API', |
| 20 | + long_description=README + '\n\n' + CHANGES, |
| 21 | + test_suite='nose.collector', |
| 22 | + classifiers=['Development Status :: 3 - Alpha', |
| 23 | + 'License :: OSI Approved :: Apache Software License', |
| 24 | + 'License :: OSI Approved :: Apache Software License', |
| 25 | + 'Operating System :: OS Independent'], |
| 26 | + keywords='opennebula cloud xmlrpc', |
| 27 | + author=u'Łukasz Oleś, Matthias Schmitz, Michael Schmidt', |
| 28 | + url='https://github.com/python-oca/python-oca', |
| 29 | + license='Apache License 2.0', |
| 30 | + packages=['oca']) |
0 commit comments