-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (46 loc) · 960 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "elcairo"
version = "1.7"
requires-python = ">=3.10"
dependencies = [
"ics",
"icalendar",
"requests",
"click",
"beautifulsoup4",
"arrow",
"halo",
]
description = "Cli program that print movies available for watching in El Cario cinema."
authors = [{ name = "Pablo Saavedra", email = "pablosaavedra123@gmail.com" }]
maintainers = [
{ name = "Pablo Saavedra", email = "pablosaavedra123@gmail.com" },
]
readme = "README.md"
[project.urls]
Repository = "https://github.com/pablos123/elcairo"
[project.scripts]
elcairo = "elcairo.main:main"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# path lib
"PTH",
]
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 20