-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 848 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
[build-system]
requires = [
"setuptools >= 68.1.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "PCSLogger"
requires-python = ">=3.8"
version = "1.0.0"
urls = {source="https://github.com/Project-Collapse-Studios/PCSLogger"}
description = "A helper logging library."
readme = "README.md"
keywords = ["PCS", "Project Collapse Studios", "Logging", "Logger"]
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",
]
dependencies=[
"colorama"
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["pcslogger*"]