-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 900 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 900 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
35
36
[project]
name = "adorable2"
version = "0.1.1"
description = "Make text adorable."
authors = [{ name = "Jonas da Silva", email = "phoenixr41414141@gmail.com" }]
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["attrs (>=25.3.0,<26.0.0)"]
license = { file = "LICENSE.txt" }
[project.urls]
"Repository" = "https://github.com/phoenixr-codes/adorable2"
"Documentation" = "https://phoenixr-codes.github.io/adorable2"
"Bug Tracker" = "https://github.com/phoenixr-codes/adorable2/issues"
[project.optional-dependencies]
dev = [
"mypy==1.16.1",
"pytest==8.4.1",
"ruff==0.12.0",
"nox==2025.5.1",
"isort==6.0.1",
]
docs = [
"Sphinx==8.2.3",
"sphinx-autodoc2==0.5.0",
"myst-parser==4.0.1",
"furo==2024.8.6",
]
[tool.poetry]
packages = [{ include = "adorable", from = "src" }]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"