-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
30 lines (26 loc) · 806 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="smopy",
version='0.0.8',
author="Cyrille Rossant",
author_email="rossant@users.noreply.github.com",
description="OpenStreetMap image tiles in Python",
license="BSD",
keywords="openstreetmap matplotlib map maps ipython",
url="https://github.com/rossant/smopy",
py_modules=['smopy'],
long_description=read('README'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Framework :: IPython",
"License :: OSI Approved :: BSD License",
],
install_requires=['numpy', 'pillow', 'six', 'matplotlib'],
extras_require={
"ipython": ["ipython"]
}
)