-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
30 lines (28 loc) · 1.03 KB
/
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 setuptools
with open("README.md", encoding="utf8") as fh:
long_description = fh.read()
setuptools.setup(
name="xyzservices",
description="Source of XYZ tiles providers",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/geopandas/xyzservices",
author="Dani Arribas-Bel, Martin Fleischmann",
author_email="[email protected], [email protected]",
license="3-Clause BSD",
packages=setuptools.find_packages(exclude=["tests"]),
python_requires=">=3.8",
include_package_data=True,
package_data={
"xyzservices": ["data/providers.json"],
},
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
],
use_scm_version=True,
setup_requires=["setuptools_scm"],
data_files=[("share/xyzservices", ["xyzservices/data/providers.json"])],
)