forked from googlemaps/google-maps-services-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
41 lines (34 loc) · 1.26 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (34 loc) · 1.26 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
importsys
try:
fromsetuptoolsimportsetup
exceptImportError:
fromdistutils.coreimportsetup
ifsys.version_info<= (2, 4):
error='Requires Python Version 2.5 or above... exiting.'
print>>sys.stderr, error
sys.exit(1)
requirements= [
'requests>=2.11.1,<3.0',
]
setup(name='googlemaps',
version='2.5.1-dev',
description='Python client library for Google Maps API Web Services',
scripts=[],
url='https://github.com/googlemaps/google-maps-services-python',
packages=['googlemaps'],
license='Apache 2.0',
platforms='Posix; MacOS X; Windows',
setup_requires=requirements,
install_requires=requirements,
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet',
]
)