-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (44 loc) · 1.19 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "octologo"
description = "Simple program that generates a logo for your open source projects."
authors = [{name = "Leopold Koprivnik", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"]
requires-python = ">=3.9"
dependencies = [
"pillow>=10.2.0",
"inquirer>=3.2.4",
"toml>=0.10.2",
"textual>=0.38.1",
"click-extra>=4.7.2",
"loguru>=0.7.2",
"textual-wizard>=0.4.3",
]
dynamic = ["version"]
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "file"
path = "src/octologo/__init__.py"
[tool.pdm.dev-dependencies]
dev = [
"ruff>=0.4.7",
"pyright>=1.1.365",
"textual-dev>=1.5.1",
]
[tool.pdm.scripts]
format = "ruff format"
dev = "textual run --dev -c octologo"
format-check = "ruff format --check"
lint = "ruff check --fix --show-fixes"
lint-check = "ruff check"
check-types = "pyright"
console = "textual console -x EVENT -x SYSTEM"
[project.urls]
Home = "https://github.com/SkwalExe/octo-logo"
[project.scripts]
octologo = "octologo.__main__:main"