-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (40 loc) · 939 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
[project]
name = "calendar-event-ease"
version = "0.1.0"
description = "Simpler interface to manage your google calendar events"
authors = [
{ name = "mathiasag7", email = "[email protected]" }
]
dependencies = [
"django",
"gcsa>=2.1.0",
"django-crispy-forms>=2.1",
"crispy-bootstrap5>=0.7",
"django-htmx>=1.17.0",
"django-recurrence>=1.11.1",
"django-render-block>=0.9.2",
"gunicorn>=21.2.0",
]
readme = "README.md"
requires-python = ">= 3.8"
[project.scripts]
event-ease = 'run:main'
ev-local = 'manage:main'
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"black",
"autoflake>=2.2.1",
"djlint",
"reorder-python-imports",
"django-browser-reload>=1.11.0",
"django-extensions>=3.2.3",
"ruff",
"mypy>=1.6.1",
"pre-commit>=3.5.0",
]
[tool.hatch.metadata]
allow-direct-references = true