-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 920 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 920 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
37
[project]
name = "janeiro"
authors = [
{name = "Sylvan Le Deunff", email = "sylvan.ledeunff@gmail.com"},
]
description = "Python framework that cleanly takes care of micro-service technical details and let you focus on building high value software."
readme = "README.md"
requires-python = ">=3.7"
keywords = ["janeiro", "framework"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["version"]
dependencies = [
"click",
"fastapi",
"uvicorn"
]
[project.urls]
Documentation = "https://sylvanld.github.io/python-janeiro/latest/"
Source = "https://github.com/sylvanld/python-janeiro"
[project.optional-dependencies]
dev = [
"black==23.11.0",
"isort==5.12.0",
"pytest"
]
[tool.setuptools.dynamic]
version = {attr = "janeiro.__version__"}
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"