Skip to content

Commit 5a7daf8

Browse files
make project available via pypi
1 parent ff138eb commit 5a7daf8

File tree

6 files changed

+33
-0
lines changed

6 files changed

+33
-0
lines changed

LICENSE.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2015 komoot GmbH
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

MANIFEST

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# file GENERATED by distutils, do NOT edit
2+
setup.cfg
3+
setup.py
4+
staticmap/__init__.py
5+
staticmap/staticmap.py

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from distutils.core import setup
2+
setup(
3+
name = 'staticmap',
4+
packages = ['staticmap'], # this must be the same as the name above
5+
version = '0.1',
6+
description = 'A small, python-based library for creating map images with lines and markers.',
7+
author = 'Christoph Lingg',
8+
author_email = '[email protected]',
9+
url = 'https://github.com/komoot/staticmap',
10+
download_url = 'https://github.com/komoot/staticmap/tarball/0.1',
11+
keywords = ['map', 'static map', 'map image', 'osm'],
12+
classifiers = [],
13+
)

staticmap/__init__.py

Whitespace-only changes.
File renamed without changes.

0 commit comments

Comments
 (0)