-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 1.02 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
35
36
37
38
[project]
name = "save_url"
version = "1.1.0"
description = "Script to save and url in a single file with an automatic and structured name. It uses monolith as its backend"
authors = [
{name = "turulomio",email = "turulomio@yahoo.es"}
]
license = {text = "GPL-3.0-only"}
readme = "README.md"
requires-python = ">=3.11,<4.0.0"
dependencies = [
"mechanize >=0.4.10",
"colorama >=0.4.6"
]
[tool.poetry]
[tool.poetry.group.dev.dependencies]
poetry = ">=2.3.2"
poethepoet = ">=0.41.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project.urls]
homepage = "https://github.com/turulomio/save_url/"
repository = "https://github.com/turulomio/save_url/"
changelog = "https://github.com/turulomio/save_url#changelog"
[tool.poetry.scripts]
save_url = 'save_url.core:console_save_url'
[tool.poe.tasks]
release = { script = "save_url.poethepoet:release" }
translate = { script = "save_url.poethepoet:translate" }
monolith_ebuild = { script = "save_url.poethepoet:monolith_ebuild" }