-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (37 loc) · 1.16 KB
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
[project]
name = "lcwc"
version = "0.15.0"
authors = [
{ name="Nate Shoffner", email="nate.shoffner@gmail.com" },
]
description = "Python library for fetching the Lancaster County-Wide Communications live incident list."
keywords = ["lcwc", "lancaster", "police", "fire", "ems", "dispatch", "911", "incident"]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"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",
"Operating System :: OS Independent",
]
dependencies = [
"beautifulsoup4",
# 3.14.3 is the first release without a known advisory
"aiohttp>=3.14.3",
# 6.0.11 dropped the cgi import, which python 3.13 removed
"feedparser>=6.0.11",
"pydantic>=2,<3",
"pytz"
]
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
"Homepage" = "https://github.com/NateShoffner/python-lcwc"
"Bug Tracker" = "https://github.com/NateShoffner/python-lcwc/issues"