-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.23 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "bcdata"
dynamic = ["version"]
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name="Simon Norris", email="[email protected]"},
]
description = "Download open data, monitor and report on changes"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: GIS",
"Operating System :: OS Independent"
]
dependencies = [
"geoalchemy2",
"geopandas",
"owslib",
"psycopg2-binary",
"rasterio",
"requests",
"sqlalchemy",
"stamina"
]
[project.optional-dependencies]
test = [
"pytest",
"pre-commit",
"requests-mock"
]
[project.scripts]
bcdata = "bcdata.cli:cli"
[project.urls]
Homepage = "https://github.com/smnorris/bcdata"
Issues = "https://github.com/smnorris/bcdata"
[tool.setuptools.dynamic]
version = {attr = "bcdata.__version__"}
[tool.ruff]
line-length = 100