-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
33 lines (30 loc) · 1020 Bytes
/
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
[tool.poetry]
name = "simplematch"
version = "1.4"
description = "Minimal, super readable string pattern matching."
authors = ["Thomas Feldmann <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tfeldmann/simplematch"
keywords = ["string", "pattern", "matching", "regular", "expression", "regex"]
classifiers = [
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.scripts]
simplematch = "simplematch:simplematch_cli"
[tool.poetry.group.dev.dependencies]
ruff = ">=0.0.292,<0.3.1"
pytest = ">=7.4.2,<9.0.0"
mypy = "^1.5.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"