-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 876 Bytes
/
pyproject.toml
File metadata and controls
37 lines (30 loc) · 876 Bytes
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
[tool.poetry]
name = "python-activator"
version = "0.8"
description = ""
authors = ["kgrid developers <kgrid-developers@umich.edu>", "Farid Seifi <faridsei@med.umich.edu>"]
readme = "README.md"
packages = [{include = "python_activator", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.98"
pyyaml = "^6.0"
typer = {version="^0.9.0", optional=true}
requests = "^2.31"
uvicorn = {version="^0.23.1", optional=true}
pyld = "^2.0.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^23.3.0"
tinyhtml = "^1.2.0" # used in test fixtures
leftpad = "^0.1.2" # used in test fixtures
ipykernel = "^6.24.0"
typer = "^0.9.0"
uvicorn = "^0.23.1"
[tool.poetry.extras]
cli=["uvicorn", "typer"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
python-activator="python_activator.cli:cli"