-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.49 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stlib"
version = "2.3.1"
description = "Async library that provides features related to Steam client and compatible stuffs"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GPLv3"}
keywords = ["steam", "valve"]
authors = [{email = "[email protected]"}, {name = "Lara Maia"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Games/Entertainment",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed"
]
dependencies = [
"aiohttp",
"beautifulsoup4",
"rsa"
]
[project.optional-dependencies]
plugins = ["stlib-plugins"]
[project.urls]
homepage = "https://github.com/calendulish/stlib"
documentation = "https://lara.monster/stlib"
repository = "https://github.com"
changelog = "https://github.com/calendulish/stlib/releases"
[tool.setuptools]
include-package-data = true
zip-safe = false
package-dir = {"" = "src"}
packages = ["stlib"]
[tool.pytest.ini_options]
addopts = "--capture=no"
console_output_style = "classic"
asyncio_mode = "auto"
enable_assertion_pass_hook = true
filterwarnings = ["ignore::pytest.PytestCollectionWarning"]