-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (73 loc) · 2 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "OGPy"
version = "0.2.0"
description = "Modern consumer of Open Graph protocol"
readme = "README.rst"
authors = [
{ name = "Kazuya Takei", email = "myself@attakei.net" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4>=4.0",
"httpx>=0.24.0",
]
[project.scripts]
"ogpy" = "ogpy.console:main"
[project.optional-dependencies]
sphinx = [
"sphinx>=7.0",
]
browser = [
"playwright>=1.51.0",
]
[project.urls]
Home = "https://github.com/atakei-lab/OGPy/"
Documentation = "https://ogpy.readthedocs.io/stable/"
Repository = "https://github.com/atakei-lab/OGPy/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"atsphinx-bulma>=0.2.2",
"doc8>=1.1.2",
"esbonio>=0.16.5",
"mypy>=1.14.1",
"pytest>=8.3.4",
"ruff>=0.9.3",
"sphinx>=7.0.0",
"sphinx-autobuild>=2024.10.3",
"sphinx-design>=0.6.1",
"sphinx-intl>=2.3.1",
"types-beautifulsoup4>=4.12.0.20241020",
]
[tool.pytest.ini_options]
addopts = "-m 'not webtest'"
markers = [
"webtest: Marks to use real HTTP connection",
]
[[tool.uv.index]]
name = "attakei-dev"
url = "https://pypi.attakei.dev/simple/"
publish-url = "https://pypi.attakei.dev/simple/"
[[tool.mypy.overrides]]
module = ['docutils', 'docutils.*']
ignore_missing_imports = true