-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (34 loc) · 1.02 KB
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
from setuptools import setup
setup(
name="pymap-tile",
version="0.1.1",
description="Download raster map tiles and stitch them into PNG mosaics.",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author="Brandon Xiang",
url="https://github.com/brandonxiang/pyMap",
py_modules=["pyMap"],
install_requires=[
"requests>=2.10.0",
"Pillow>=3.2.0",
"tqdm>=4.7.1",
],
entry_points={
"console_scripts": [
"pymap=pyMap:main",
"pyMap=pyMap:main",
],
},
python_requires=">=3.5",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Utilities",
],
)