-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 1.2 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
39
40
41
42
43
44
[project]
name = "Event Management Application API"
version = "0.0.1"
description = "The event management application allows organizers/users to perform CRUD operations on events. "
readme = "README.md"
authors = [
{ name = "Subash Ghimire", email = "event@subashghimire.info.np" },
]
maintainers = [
{ name = "Subash Ghimire", email = "event@subashghimire.info.np" },
]
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3",
]
license = { text = "MIT" }
requires-python = ">=3.11"
keywords = ["Django", "Event Management API", "Event", "Rest Framework"]
[project.urls]
issues = "https://github.com/PublisherName/Event-management-Application-API/issues"
homepage = "https://event.subashghimire.info.np/"
repository = "https://github.com/PublisherName/Event-management-Application-API"
[tool.ruff]
line-length = 99
force-exclude = true
extend-exclude = ["migrations"]
[tool.ruff.lint]
preview=true
extend-select = ["C", "E", "F", "I001", "PLR6301", "Q", "SIM", "T", "W"]
[tool.ruff.format]
indent-style = "space"
docstring-code-format = true
docstring-code-line-length = 20
[tool.ruff.lint.flake8-quotes]
inline-quotes = "double"
multiline-quotes = "double"
docstring-quotes = "double"