-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (71 loc) · 1.92 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (71 loc) · 1.92 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
[project]
name = "ctftime_api"
version = "0.1.6"
description = "CTFTime API wrapper"
authors = [{ name = "John Toniutti", email = "john.toniutti@gmail.com" }]
requires-python = ">=3.11"
readme = "README.md"
keywords = [
"ctftime",
"api",
"wrapper",
]
license = "GPL-3.0-or-later"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: Pydantic",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"httpx (>=0.28.1,<0.29.0)",
"pydantic (>=2.10.6,<3.0.0)",
"pydantic-extra-types (>=2.10.2,<3.0.0)",
"pycountry (>=24.6.1,<25.0.0)",
]
[project.optional-dependencies]
speed = [
"uvloop (>=0.21.0,<1.0.0) ; sys_platform != 'win32'",
"brotli (>=1.1.0,<2.0.0) ; platform_python_implementation == 'CPython' ",
"brotlicffi (>=1.1.0.0,<2.0.0.0) ; platform_python_implementation != 'CPython' ",
"h2 (>=4.2.0,<5.0.0)",
"zstandard (>=0.23.0,<0.24.0)",
]
[project.urls]
repository = "https://github.com/jotonedev/ctftime_api"
documentation = "https://jotonedev.github.io/ctftime_api/"
[dependency-groups]
dev = [
"ruff~=0.9",
"pytest~=8.3",
"pytest-cov~=6.1",
"pytest-asyncio>=0.24,<2.0",
"mypy~=1.11",
]
docs = [
"mkdocs~=1.6",
"mkdocstrings-python~=1.12",
"mkdocs-material[imaging]~=9.5",
"mkdocs-git-revision-date-localized-plugin~=1.3",
"black~=25.1",
"griffe-inherited-docstrings~=1.0",
"griffe-pydantic~=1.1.0",
]
[tool.uv]
package = true
default-groups = [
"dev",
"docs",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
exclude = ["__init__.py"]