-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
92 lines (76 loc) · 2.16 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
81
82
83
84
85
86
87
88
89
90
91
92
[tool.poetry]
name = "gallagher"
version = "0.1.0-alpha.5"
description = "The missing developer toolkit for Gallagher Command Centre"
authors = ["Dev Mukherjee <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/anomaly/gallagher"
documentation = "https://anomaly.github.io/gallagher/"
keywords = ["gallagher", "rest", "api", "tui", "cli"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Framework :: Pydantic",
"Framework :: Pydantic :: 2",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/anomaly/gallagher/issues"
[tool.poetry.extras]
cli = ["asyncer", "typer", "rich"]
tui = ["textual"]
[tool.poetry.dependencies]
python = "^3.11"
httpx = "^0.27.0"
pydantic = {version = "^2.8.2", extras = ["email"]}
typing-extensions = "^4.11.0"
annotated-types = "^0.7.0"
certifi = "^2024.2.2"
idna = "^3.7"
packaging = "^24.1"
pluggy = "^1.3.0"
anyio = "^4.3.0"
aiohttp = "^3.9.4"
[tool.poetry.group.dev.dependencies]
pytest-cov = "^5.0.0"
coverage = "^7.5.1"
pytest = "^8.2.1"
pytest-order = "^1.2.1"
pytest-tap = "^3.4"
pytest-asyncio = "^0.23.6"
pytest-clarity = "^1.0.1"
textual-dev = "^1.4.0"
mkdocs-typer = "^0.0.3"
mkdocs = "^1.6.0"
pytest-dependency = "^0.6.0"
flake8 = "^7.0.0"
black = "^24.4.2"
tqdm = "^4.66.4"
mkdocs-material = {extras = ["imaging"], version = "^9.5.27"}
pygments = "^2.18.0"
mkdocstrings = "^0.25.1"
[tool.poetry.group.cli.dependencies]
asyncer = "^0.0.7"
typer = "^0.12.3"
rich = "^13.7.1"
[tool.poetry.group.tui.dependencies]
textual = "^0.77.0"
textual-dev = "^1.5.1"
rich-pixels = "^3.0.1"
[tool.poetry.group.sync.dependencies]
sqlalchemy = "^2.0.30"
alembic = "^1.13.1"
shillelagh = "^1.2.19"
[tool.poetry.group.test.dependencies]
coverage = "^7.4.3"
pytest-asyncio = "^0.23.5.post1"
[tool.poetry.scripts]
gala = "gallagher.cli:app"
gtui = "gallagher.tui:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."shillelagh.adapter"]
gacc = "gallagher.ext.shillelagh:CCAPIAdapter"