-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 893 Bytes
/
pyproject.toml
File metadata and controls
30 lines (25 loc) · 893 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
[tool.poetry]
name = "str-style"
version = "1.0.3"
description = "str-style is a Python package for enhancing the visual appearance of text. Easily apply a variety of styles like bold, underline, colors, and more to your strings in both CLI and Python scripts."
authors = ["esharf <57587340+esharf@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "strstyle"}]
repository = "https://github.com/esharf/str-style"
keywords = ["style", "collor"]
[tool.poetry.scripts]
str-style = "strstyle.__main__:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/esharfr/str-style/issues"
[tool.poetry.dependencies]
python = ">=3.8.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
flake8 = "^7.1.1"
pytest-cov = "^5.0.0"
pytest-mock = "^3.14.0"
jinja2 = "^3.1.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"