-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 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
35
36
[project]
name = "violetear"
version = "1.2.4"
description = "Full-Stack Web Development Framework for Pythonistas"
readme = "README.md"
authors = [
{ name = "Alejandro Piad", email = "apiad@apiad.net" }
]
classifiers = [
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
requires-python = ">=3.12"
dependencies = []
[project.optional-dependencies]
server = ["fastapi[standard]>=0.124.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["violetear"]
[dependency-groups]
dev = [
"black>=25.11.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
]
[tool.setuptools.package-data]
violetear = ["*.png"]