This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
73 lines (65 loc) · 2.15 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
65
66
67
68
69
70
71
72
73
# coding: utf-8
"""
LocationIQ
LocationIQ provides flexible enterprise-grade location based solutions. We work with developers, startups and enterprises worldwide serving billions of requests everyday. This page provides an overview of the technical aspects of our API and will help you get started. # noqa: E501
The version of the OpenAPI document: 1.1.0
Generated by: https://openapi-generator.tech
"""
from setuptools import setup, find_packages # noqa: H301
NAME = "locationiq"
VERSION = "1.1.0"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
setup(
name=NAME,
version=VERSION,
description="LocationIQ",
license='MIT',
author="OpenAPI Generator community",
author_email="[email protected]",
url="https://github.com/location-iq/locationiq-python-client",
download_url = 'https://github.com/location-iq/locationiq-python-client/archive/1.1.0.tar.gz',
keywords=[
"OpenAPI",
"OpenAPI-Generator",
"api",
"map",
"maps",
"locationiq",
"location",
"locate",
"forward",
"geocoding",
"forward-geocoding",
"reverse",
"reverse-geocoding",
"autocomplete",
"directions",
"matrix",
"distance-matrix",
"matching",
"nearest",
"nearby",
"countries",
"nearby-countries",
"nearby",
"points-of-interests",
"nearby-points-of-interests",
"venues",
"places",
"road",
"nearest-road",
"snap-to-road"
],
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
long_description="""\
LocationIQ provides flexible enterprise-grade location based solutions. We work with developers, startups and enterprises worldwide serving billions of requests everyday. This page provides an overview of the technical aspects of our API and will help you get started. # noqa: E501
"""
)