-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (33 loc) · 1 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
[build-system]
requires = [
"setuptools >= 68.1.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "PyCaptionCompiler"
requires-python = ">=3.8"
version = "1.1"
urls = {source="https://github.com/Project-Collapse-Studios/PyCaptionCompiler"}
description = "Caption compiler library for Source Engine games, re-written in Python."
readme = "README.md"
keywords = ["Steam", "Valve", "Source Engine"]
authors = [
{name="Project Collapse Studios"}
]
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 @ git+https://github.com/Project-Collapse-Studios/srctools.git",
"charset_normalizer >= 3.4.4"
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["pycaptioncompiler*"]