This repository was archived by the owner on Jun 6, 2023. It is now read-only.
forked from heremaps/flexible-polyline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.14 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.14 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
from setuptools import setup
from os import path
import io
this_directory = path.abspath(path.dirname(__file__))
with io.open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="python-flexpolyline-pbapi",
description="Flexible Polyline encoding (PBAPI extension)",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.2.1",
author="decitre",
packages=["flexpolyline_pbapi"],
# SPDX-License-Identifier: MIT
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
project_urls={
"Source": "https://github.com/decitre/python-flexpolyline-pbapi.git"
},
test_suite="test_flexpolyline"
)