-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 803 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (31 loc) · 803 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
36
[tool.poetry]
name = "bootstrap"
version = "1.0.0.0"
description = "Ooh, shiny!"
authors = ["sylvorg <jeet.ray@syvl.org>"]
license = "OREO"
include = [
"bootstrap/**/*.py",
"bootstrap/**/*.hy",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
bakery = { git = "https://github.com/syvlorg/bakery.git", branch = "main" }
tailapi = { git = "https://github.com/syvlorg/tailapi.git", branch = "main" }
[tool.poetry.dev-dependencies]
pytest = "^3.0"
poetry = "*"
poetry2setup = "*"
pytest-hy = { git = "https://github.com/syvlorg/pytest-hy.git", branch = "master" }
pytest-randomly = "*"
pytest-parametrized = "*"
pytest-sugar = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = [
"--strict-markers",
]
markers = [
]