-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
65 lines (57 loc) · 1.25 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["hatchling >= 1.13.0"]
build-backend = "hatchling.build"
[project]
name = "pypi_gpt"
description = "pypi_gpt"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Ian Maurer", email = "ian@genomoncology.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastapi == 0.104.1",
"sqlmodel == 0.0.14",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"coverage[toml]",
"uvicorn",
]
[tool.setuptools.package-data]
pypi_gpt = ["static/*", "templates/*"]
[project.urls]
[tool.hatch.version]
path = "src/pypi_gpt/__init__.py"
[tool.pytest.ini_options]
addopts = [
"--strict-config",
"--strict-markers",
]
xfail_strict = true
junit_family = "xunit2"
norecursedirs = "vendor env"
filterwarnings = [
]
[tool.coverage.run]
parallel = true
source = [
"src",
]
context = '${CONTEXT}'
omit = [
'__main__.py',
'__init__.py',
]