-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.24 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name="mastodon-apod"
description="APOD bot for mastodon"
maintainers=[
{name="codl", email="[email protected]"},
]
dependencies = [
"beautifulsoup4>=4.8,<4.13",
"mastodon.py>=1.8.1,<2",
"requests>=2.30,<3",
"pillow>=10.0,<12",
"ada-url>=1.5.0",
"structlog>=24.4.0,<25",
"rich>=13.8.0,<14",
"whenever>=0.6.10",
"typer>=0.12.5",
"tomli;python_version<'3.11'"
]
requires-python = ">=3.10"
version = "1.0.0"
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
]
[dependency-groups]
test = [
"pytest>=8.3.2,<9",
"pytest-recording>=0.13.2,<0.14",
"vcrpy>=6.0.1,<7",
"urllib3>=1.26.5,<2",
"tox>=4",
"tox-uv>=1.11.3",
"coverage[toml]>=7.6.1,<8",
]
[tool.setuptools]
#packages = []
[tool.ruff]
line-length = 89
[tool.ruff.lint]
select = [
"E4",
"E7",
"E9",
"F",
"I",
]
[tool.black]
line-length = 89
[tool.isort]
profile = "black"
line_length = 89
[tool.coverage.run]
source = [
"apod",
]