-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 843 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
[tool.poetry]
name = "media_cleanser"
version = "0.1.0"
description = "Cleanse montreal gazette readability webpages of clutters"
authors = ["Philippe Jean"]
readme = "README.md"
include = [
{ path = "resources/data//rules/**/*", format = "sdist" },
{ path = "resources/data//rules/**/*", format = "wheel" }
]
[project.urls]
"Homepage" = "https://github.com/pj-connect/media_cleanser.git"
[tool.poetry.dependencies]
python = "^3.10"
beautifulsoup4 = "^4.12.3"
lxml = "^5.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
gazette = "media_cleanser.gazette:main"
# A poetic touch
[tool.verse_of_code]
inspiration = """
In lines of code, we find our art,
A digital canvas, where dreams start.
With Python's grace, we craft our tale,
A verse of logic, beyond the veil.
"""