-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.16 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
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "vp-python-core"
version = "0.1.0"
authors = [
{ name="Hari", email="hari@example.com" },
]
description = "Core utilities for VP projects"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"pydantic",
"fastapi",
"sentry-sdk[fastapi]",
"boto3",
"httpx[http2]",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-benchmark",
"pytest-mock",
"pytest-asyncio",
"httpx",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
[tool.poetry]
name = "vp-python-core"
version = "0.1.0"
description = "Core utilities for VP projects"
authors = ["Hari <hari@example.com>"]
readme = "README.md"
packages = [{include = "vp_core"}]
[tool.poetry.dependencies]
python = ">=3.8"
pydantic = "*"
fastapi = "*"
sentry-sdk = {extras = ["fastapi"], version = "*"}
boto3 = "*"
httpx = {extras = ["http2"], version = "*"}
[tool.setuptools.packages.find]
where = ["."]
include = ["vp_core*"]