-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (30 loc) · 862 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
32
33
34
35
36
37
38
# encoding: utf-8
"""A simple wrapper for the Thenmap API.
See http://thenmap.net
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
def readme():
"""Import README for use as long_description."""
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
return f.read()
setup(
name='thenmap',
version='1.1.0',
description='A Thenmap API wrapper',
long_description=readme(),
url='https://github.com/jplusplus/thenmap-python',
author='Leonard Wallentin, J++ Stockholm',
author_email='[email protected]',
license='MIT',
packages=["thenmap"],
install_requires=[
"shapely>=1.0.4",
"requests",
"six"
],
)