forked from GFDRR/osm-extract
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (29 loc) · 815 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
25
26
27
28
29
30
31
import os
from distutils.core import setup
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name="osm-extract",
version="0.1",
author="",
author_email="",
description="osm-extract",
long_description=(read('README.md')),
# Full list of classifiers can be found at:
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 1 - Planning',
],
license="BSD",
keywords="openstreetmap osm",
url='https://github.com/terranodo/osm-extract',
packages=find_packages(),
install_requires=[
'django==1.8.12',
'celery==3.1.19',
'django-celery',
],
include_package_data=True,
zip_safe=False,
)