-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·56 lines (50 loc) · 1.56 KB
/
setup.py
File metadata and controls
executable file
·56 lines (50 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import with_statement
import os
import sys
from setuptools import setup
with open('mapmaker/__init__.py') as f:
for line in f:
if line.startswith('__version__'):
VERSION = line.split('\'')[1]
break
with open('requirements.txt') as f:
required = f.readlines()
with open('README.rst') as f:
long_description = f.read()
setup(
name='mapmaker',
version=VERSION,
author='Alexander Keil',
author_email='alex@akeil.net',
maintainer='Alexander Keil',
url='http://github.com/akeil/mapmaker',
project_urls={
'Source': 'http://github.com/akeil/mapmaker',
'Bug Reports': 'http://github.com/akeil/mapmaker/issues',
},
description='Create map images from slippy map tiles.',
long_description=long_description,
long_description_content_type='text/x-rst',
install_requires=required,
entry_points = {
'console_scripts': [
'mapmaker = mapmaker.main:main',
]
},
license='MIT',
license_file = 'LICENSE.txt',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
keywords = 'osm, openstreetmap, tiles, map, image, cli',
python_requires='>=3'
)