-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 969 Bytes
/
setup.py
File metadata and controls
34 lines (28 loc) · 969 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
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python3
from pathlib import Path
import setuptools
README_FILE = Path(__file__).parent / "README.md"
LONG_DESCRIPTION = README_FILE.read_text("UTF-8")
setuptools.setup(
name="volute",
version="1.0.1",
description="A Python library for rendering heatmaps to Web Mercator tiles",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/saintamh/volute",
author="Hervé Saint-Amand",
packages=["volute"],
package_data={"volute": ["py.typed"]},
install_requires=[
"haversine~=2.0",
"mercantile~=1.0",
"numpy~=1.13",
"Pillow~=9.0",
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
zip_safe=False, # https://mypy.readthedocs.io/en/latest/installed_packages.html#creating-pep-561-compatible-packages
)