Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
30 lines (26 loc) · 804 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 804 Bytes
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
importsys
fromsetuptoolsimportsetup, find_packages
requires= [
'requests',
'oauth2'
]
pyversion=sys.version_info[:2]
ifpyversion< (2, 6):
requires.append('simplejson')
setup(
name="python-cloud-auth-client",
version="0.1.2",
description="Client library for Scyld Cloud Auth API",
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent"
],
author="Penguin Computing, Inc.",
maintainer="Penguin Computing, Inc.",
maintainer_email="support@penguincomputing.com",
url="http://www.penguincomputing.com",
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=requires
)