-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (39 loc) · 942 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["weavingspace", "."]
exclude = ["superseded"]
[project]
name = "weavingspace"
version = "0.0.6.11"
authors = [
{ name="David O'Sullivan", email="[email protected]" },
]
description = "A package for making tiled mapping layers"
requires-python = ">=3.12.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"requests",
'importlib-metadata; python_version>="3.12"',
"fiona",
"geopandas",
"mapclassify",
"pandas",
"numpy",
"scipy",
"shapely",
"networkx",
"pillow",
"matplotlib",
"dataclasses",
"typing",
]
[project.urls]
Homepage = "https://github.com/DOSull/weaving-space"
Repository = "https://github.com/DOSull/weaving-space"