-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 749 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 749 Bytes
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
setup(
name="simplestmaps",
version="1.7.0",
description="Super simple on-liner maps in python.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Juan Pedro Fisanotti",
author_email="fisadev@gmail.com",
url="http://github.com/fisadev/simplestmaps",
py_modules=["simplestmaps"],
license="MIT",
install_requires=["folium>=0.14.0"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)