forked from pybucuresti/OsmPoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 760 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="OsmPoint",
packages=find_packages(),
install_requires=[
'Flask >= 0.7',
'flask-sqlalchemy',
'flask-openid',
'flask-actions',
'WTForms',
'py',
'pytest', # not sure why this is needed
'PyYAML',
],
entry_points={'console_scripts': ['osmpoint = osmpoint.manage:main',
'parser = pbf_parser:main']},
)
# Also required for development: 'unittest2', 'mock', 'OsmApi.py' (from
# http://svn.openstreetmap.org/applications/utils/python_lib/OsmApi/OsmApi.py).
# Deploying can be done with 'fabric'.
# imposm.parser needs build-essential, python-dev, protobuf-compiler and
# libprotobuf-dev.