-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
63 lines (58 loc) · 1.5 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
[project]
name = "faceit"
version = "0.1.5"
description = "The Python wrapper for the Faceit API"
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
authors = [
{ name = "zombyacoff", email = "zombyacoff@gmail.com" },
]
keywords = ["api", "faceit", "wrapper"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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 :: 3.13",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27.0,<1.0.0",
"pycountry>=24.6.1,<25.0.0",
"pydantic>=2.7.1,<3.0.0",
"pydantic-extra-types>=2.10.3,<3.0.0",
"tenacity>=8.2.3,<9.0.0",
]
[project.optional-dependencies]
env = [
"python-decouple>=3.8",
]
[project.urls]
"Bug Tracker" = "https://github.com/zombyacoff/faceit-python/issues"
"Documentation" = "https://docs.faceit.com/docs"
[dependency-groups]
dev = [
"mypy>=1.14",
"pre-commit==3.5",
"pytest>=7.4",
"pytest-asyncio>=0.21.1",
"ruff>=0.4.8",
]
lint = [
"ruff>=0.4.8",
]
test = [
"pytest>=7.4",
"pytest-asyncio>=0.21.1",
]
[tool.hatch.build.targets.wheel]
packages = ["src/faceit"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"