-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1.01 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
#! /usr/bin/env python
from setuptools import setup
exec(open("./mapcraft_slice_maker/_version.py").read())
setup(name="mapcraft-slice-maker",
version=__version__,
author="Rory McCann",
author_email="[email protected]",
packages=['mapcraft_slice_maker'],
install_requires = [
"fiona",
"shapely",
"openstreetmap-writer",
"requests",
],
license = 'AGPLv3+',
description = "Convert geofiles into mapcraft suitable slice files",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
entry_points={
'console_scripts': [
'geojson2mapcraft = mapcraft_slice_maker:main',
'shp2mapcraft = mapcraft_slice_maker:main',
'bbox2mapcraft = mapcraft_slice_maker:bbox2mapcraft',
]
},
)