-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 792 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 792 Bytes
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
#!/usr/bin/env python
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="pyosmkit",
version="0.12",
description="Library for building OSM tools",
url="https://github.com/tierpod/pyosm",
author="Pavel Podkorytov",
author_email="pod.pavel@gmail.com",
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
],
packages=find_packages(),
scripts=["bin/osmtool_convert_path", "bin/osmtool_unpack_metatile",
"bin/osmtool_convert_latlong", "bin/osmtool_unpack_mbtile"],
)