forked from simonw/datasette-cluster-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (49 loc) · 1.58 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup
import os
VERSION = "0.18.2"
def get_long_description():
with open(
os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md"),
encoding="utf8",
) as fp:
return fp.read()
setup(
name="datasette-cluster-map",
description="Datasette plugin that shows a map for any data with latitude/longitude columns",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Simon Willison",
url="https://github.com/simonw/datasette-cluster-map",
project_urls={
"Issues": "https://github.com/simonw/datasette-cluster-map/issues",
"CI": "https://github.com/simonw/datasette-cluster-map/actions",
"Changelog": "https://github.com/simonw/datasette-cluster-map/releases",
},
license="Apache License, Version 2.0",
classifiers=[
"Framework :: Datasette",
"License :: OSI Approved :: Apache Software License",
],
version=VERSION,
python_requires=">=3.8",
packages=["datasette_cluster_map"],
entry_points={"datasette": ["cluster_map = datasette_cluster_map"]},
package_data={
"datasette_cluster_map": [
"static/*.js",
"static/*.css",
]
},
install_requires=["datasette>=0.54", "datasette-leaflet>=0.2.2"],
extras_require={
"test": [
"pytest",
"pytest-asyncio",
"httpx",
"sqlite-utils",
"nest-asyncio",
"datasette-test",
],
"playwright": ["pytest-playwright"],
},
)