-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 853 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
[project]
name = "api_takehome"
version = "0.1.0"
description = "An API endpoint take-home exam."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Matt Boyd", email = "machallboyd@gmail.com"},
]
maintainers = [
{name = "Matt Boyd", email = "machallboyd@gmail.com"},
]
dependencies = [
"fastapi",
"uvicorn",
"sqlalchemy",
"psycopg2-binary"
]
[project.urls]
Repository = "https://github.com/machallboyd/api_takehome"
[project.optional-dependencies]
dev = [
"pytest",
"pip-tools",
"isort",
"black"
]
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["api_takehome"] # package names should match these glob patterns (["*"] by default)
namespaces = false
[tool.isort]
profile = "appnexus"
[tool.pytest.ini_options]
pythonpath = [
"src"
]