-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.51 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
[project]
name = "pyscx"
version = "1.1.3"
description = "A library for interacting with the STALCRAFT: X API"
authors = [
{name = "Oidaho", email = "oidaho.main@yandex.ru"}
]
license = {text = "LICENSE"}
requires-python = ">=3.13"
dependencies = [
"requests (>=2.32.3,<3.0.0)",
"cachetools (>=5.5.1,<6.0.0)",
"pydantic (>=2.10.6,<3.0.0)"
]
dynamic = [ "readme", "classifiers" ]
keywords = [ "api", "library", "eapi", "stalcraft", "package" ]
[project.urls]
repository = "https://github.com/Oidaho/pyscx"
"Bug Tracker" = "https://github.com/Oidaho/pyscx/issues"
documentation = "https://Oidaho.github.io/pyscx/"
[tool.poetry]
readme = ["README.md"]
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Natural Language :: Russian",
"Programming Language :: Python",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
python-dotenv = "^1.0.1"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.4"
[tool.poetry.group.docs.dependencies]
sphinx = "^8.1.3"
sphinx-rtd-theme = "^3.0.2"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -v"
console_output_style = "progress"
testpaths = [
"tests",
]
python_files = [
"test_*.py",
"check_*.py",
]