-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 1.05 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
[tool.poetry]
name = "bconsole"
version = "0.0.28"
description = "A logging library that provides helper classes and functions to colorize and manipulate terminal output easily."
authors = ["BetaKors"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/betakors/bconsole"
homepage = "https://github.com/betakors/bconsole"
keywords = ["terminal", "terminal-colors", "logging", "logger", "colorama"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python",
"Topic :: Terminals",
]
[tool.poetry.dependencies]
python = "^3.13"
colorama = "^0.4.6"
unidecode = "^1.3.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"