-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (51 loc) · 2 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
[tool.poetry]
name = "websourcemonitor"
version = "0.1.0"
description = "Django application to monitor web sources and detect changes in specified sections."
packages = [{include = "websourcemonitor"}]
license = "GNU Affero GPL License"
authors = ["Guglielmo Celata <guglielmo@openpolis.it>"]
readme = "README.md"
homepage = "https://github.com/openpolis/django-web-source-monitor.git"
repository = "https://github.com/openpolis/django-web-source-monitor.git"
documentation = "https://django-web-source-monitor.readthedocs.io"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP",
]
keywords = [
"Django", "Web Monitoring", "Change Detection", "Web Sources", "Alert System", "Real-time Monitoring",
"Source Tracking", "Python", "Content Monitoring"
]
[tool.poetry.dependencies]
python = ">=3.8"
django = ">=3.2"
playwright = ">=1.41.1"
#django-admin-row-actions = { git = "https://github.com/DjangoAdminHackers/django-admin-row-actions.git", branch = "feature/django4" }
django-object-actions = ">=4.1.0"
lxml = ">5.0.0"
[tool.poetry.dev-dependencies]
pytest = ">=6.2"
pytest-django = ">=4.4"
requests = ">=2.32.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"