-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.5 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
45
46
47
48
49
50
51
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "fastapi-template"
version = "0.0.1"
dependencies = ["fastapi[standard]", "motor", "python-dotenv"]
requires-python = ">=3.12"
authors = [
{name = "John Doe", email = "john.doe@example.com"},
]
maintainers = [
{name = "John Doe", email = "john.doe@example.com"},
]
description = "A Fast API template"
readme = "README.md"
keywords = ["fastapi", "template"]
# license = {file = "LICENSE.txt"}
classifiers = [
"Programming Language :: Python"
]
[project.optional-dependencies]
dev = ["pip-tools", "pylint", "black", "python-dotenv", "isort"]
[project.urls]
Homepage = "https://example.com"
Documentation = "https://readthedocs.org"
Repository = "https://github.com/me/example.git"
"Bug Tracker" = "https://github.com/me/example/issues"
Changelog = "https://github.com/me/example/blob/master/CHANGELOG.md"
# Executing this command will do the equivalent of from example import main_cli; main_cli()
# [project.scripts]
# example-cli = "scripts:main_cli"
# On Windows, scripts packaged this way need a terminal, so if you launch them from
# within a graphical application, they will make a terminal pop up. To prevent this from
# happening, use the [project.gui-scripts] table instead of [project.scripts].
# [project.gui-scripts]
# example-gui = "example:main_gui"
# [project.entry-points."example.magical"]
# ex = "example:main_example"
[tool.pylint.format]
max-line-length = "88"
[tool.isort]
profile = "black"