forked from PatMart/netdnarws
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·35 lines (31 loc) · 888 Bytes
/
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
31
32
33
34
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
options = {
"name": "maxcdn",
"version": "0.0.7",
"description": "A Python REST Client for MaxCDN REST Web Services",
"author": "Joshua P. Mervine",
"author_email": "[email protected]",
"license": "MIT",
"keywords": "MaxCDN CDN API REST",
"packages": ['maxcdn'],
"url": 'http://github.com/maxcdn/python-maxcdn'
}
install_requires = [
"requests",
"requests_oauthlib",
"certifi"
]
tests_require = [
"nose",
"mock"
]
include_package_data = True
try:
from setuptools import setup
options["install_requires"] = install_requires
options["include_package_data"] = include_package_data
options["tests_require"] = tests_require
setup(**options)
except ImportError:
print("ERROR: setuptools wasn't found, please install it")