-
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) · 784 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 784 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 = "head-context"
version = "0.1.1"
description = ""
authors = ["Rafal Stozek <rafal.stozek@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/rafales/head-context"
keywords = ["templating", "jinja2"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.8"
typing-extensions = "^4.4.0"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
pytest-watch = "^4.2.0"
Jinja2 = "^3.1.2"
black = "^22.10.0"
mypy = "^0.991"
ipython = "^8.6.0"
[tool.pytest.ini_options]
minversion = "6.0"
python_files = "*_test.py"
testpaths = ["tests"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"