-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 750 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 750 Bytes
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vlydev-cs2-masked-inspect"
version = "1.1.2"
description = "Encode and decode CS2 masked inspect links"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = ["cs2", "csgo", "inspect", "protobuf", "steam"]
authors = [
{ name = "VlyDev", email = "vladdnepr1989@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[tool.setuptools.packages.find]
where = ["."]
include = ["cs2_inspect*"]
[tool.pytest.ini_options]
testpaths = ["tests"]