-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·64 lines (57 loc) · 1.91 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
from __future__ import absolute_import, division, print_function
from setuptools import setup, find_packages
import sys
from os import path
from io import open
DESCRIPTION = ("Apigee python client.")
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
VERSION = '0.0.6'
setup_requires = (
['pytest-runner'] if any(x in sys.argv for x in ('pytest', 'test', 'ptr')) else []
)
setup(
name='apigee-python',
version=VERSION,
description=DESCRIPTION,
url='https://github.com/rubelw/apigee-python',
author='Will Rubel',
author_email='[email protected]',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
platforms=["any"],
packages=find_packages(),
include_package_data=True,
setup_requires=setup_requires,
tests_require=['pytest','mock'],
test_suite="apigee-python.tests",
install_requires=[
"boto3>=1.4.3",
"requests>=2.18",
"Click>=6.7",
"configparser>=3.5.0",
"future>=0.16.0",
"six>=1.11.0",
"pip"
],
keywords=['apigee', 'api', 'client'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)