-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 794 Bytes
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 794 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
37
38
39
[tool.poetry]
name = "magicregex"
version = "0.1.3"
description = "Readable regular expressions in Python"
authors = ["Thomas Wollmann"]
readme = "README.md"
license = "Apache 2.0"
repository = "https://github.com/ThomasWollmann/magicregex-python"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{ include = "magicregex", from = "src" }
]
include = [
{ path = "tests", format = "sdist" }
]
[tool.poetry.dependencies]
python = "^3.8"
regex = "^2022.10.31"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.1.0"
[tool.poetry.group.test.dependencies]
pre-commit = "^3.1.0"
pytest = "^7.2.1"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"