-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (43 loc) · 1.44 KB
/
setup.py
File metadata and controls
49 lines (43 loc) · 1.44 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from pycclib.version import __version__
execfile(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'pycclib', 'version.py'))
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
if sys.version_info < (2, 6):
required = ['simplejson', 'certifi']
else:
required = ['certifi']
required.append('httplib2>=0.7.4')
setup(
name='pycclib',
version=__version__,
description='Python library for the cloudControl API',
author='cloudControl Team',
author_email='info@cloudcontrol.de',
url='https://www.cloudcontrol.com',
license='Apache 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
],
packages=find_packages(),
install_requires=required,
test_suite='tests',
)