-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 919 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 919 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
31
32
33
34
35
[build-system]
requires = [
"setuptools >= 68.1.0",
"srctools >= 2.4.0"
]
[project]
name = "PySteamPathProvider"
requires-python = ">=3.8"
version = "1.3"
urls = {source="https://github.com/TheEnderek0/PySteamPathProvider/"}
description = "Library used for accessing the installation directories (and app names) given Steam app-ids."
readme = "README.md"
keywords = ["Steam", "Valve", "Source Engine"]
authors = [
{name="Enderek"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Software Development :: Libraries",
"Topic :: Games/Entertainment"
]
dependencies=[
"srctools >= 2.4.0"
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["pysteampathprovider*"]