-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (29 loc) · 925 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "color-scheme-utils"
version = "0.1.3"
description = ""
authors = ["Teddy Xinyuan Chen <45612704+tddschn@users.noreply.github.com>"]
readme = "README.md"
packages = [{include = "color_scheme_utils"}]
license = "MIT"
homepage = "https://github.com/tddschn/color-scheme-utils"
repository = "https://github.com/tddschn/color-scheme-utils"
classifiers = [
"Topic :: Utilities"
]
keywords = ["terminal", "color", "scheme", "color-scheme"]
[tool.poetry.scripts]
kitty-conf-extract-theme = "color_scheme_utils.kitty_conf_extract_theme:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/tddschn/color-scheme-utils/issues"
[tool.poetry.dependencies]
python = "^3.10"
stringcase = "^1.2.0"
[tool.poetry.group.dev.dependencies]
black = "^22.6.0"
rich = "^12.5.1"
ipython = "^8.4.0"
better-exceptions = "^0.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"