-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
80 lines (70 loc) · 1.57 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "migas-server"
description = "Migas telemetry server"
readme = "README.md"
license = {file = "LICENSE"}
maintainers = [
{name = "Nipreps developers", email = "[email protected]"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">3.10"
dependencies = [
"aiohttp",
"asyncpg",
"fastapi[all]",
"packaging",
"redis >=4.2.0",
"strawberry-graphql[fastapi]",
"sqlalchemy[asyncio]",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/nipreps/migas-server"
[project.optional-dependencies]
heroku = [
"scout-apm",
]
speedups = [
"aiohttp[speedups]",
"redis[hiredis]",
]
dev = [
"black",
"isort",
"pre-commit",
"pip-tools",
"hatch",
]
migrations = [
"alembic",
]
test = [
"pytest",
]
[project.scripts]
migas-server = "migas.server.cli:main"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "migas/server/_version.py"
[tool.hatch.build.sources]
"migas/server" = "migas/server"
[tool.hatch.build.targets.wheel.force-include]
"migas/static" = "migas/static"
[tool.black]
line-length = 99
target-version = ['py310']
skip-string-normalization = true
[tool.isort]
profile = 'black'