-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.23 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "wikibots"
version = "1.0.0"
authors = [
{name = "DaxServer",email = "daxserver@icloud.com"}
]
readme = "README.md"
requires-python = ">=3.13,<4.0"
dependencies = [
"python-dateutil (>=2.9.0.post0,<3.0.0)",
"deepdiff (>=9.0.0,<10.0.0)",
"requests-oauthlib (>=2.0.0,<3.0.0)",
"google-api-python-client (>=2.166.0,<3.0.0)",
"flickr-photos-api (>=3.0.0,<4.0.0)",
"flickr-url-parser (>=1.11.0,<2.0.0)",
"redis (>=5.2.1,<6.0.0)",
"mwparserfromhell (>=0.7.2,<1.0.0)",
"requests (>=2.32.0,<3.0.0)",
]
[tool.poetry]
packages = [{include = "wikibots", from = "src"}]
[project.scripts]
flickr = "wikibots.flickr:main"
inaturalist = "wikibots.inaturalist:main"
pas = "wikibots.pas:main"
youtube = "wikibots.youtube:main"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[io.buildpacks]
exclude = [
".poetry",
".venv",
"apicache",
"*.sh",
"user-password.py",
"throttle"
]
[dependency-groups]
dev = [
"ruff (>=0.15.9,<0.16.0)",
"ty (>=0.0.28,<0.0.29)",
"isort (>=8.0.1,<9.0.0)",
"pytest (>=9.0.3,<10.0.0)",
"pytest-mock (>=3.15.1,<4.0.0)",
"pytest-timeout (>=2.4.0,<3.0.0)"
]
[tool.isort]
profile = "black"