-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
57 lines (48 loc) · 1.6 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "stringparser"
authors = [
{name="Hernan E. Grecco", email="[email protected]"}
]
license = {text = "BSD-3-Clause"}
description = "Easy to use pattern matching and information extraction"
keywords = ["string", "parsing", "PEP3101", "regex"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9"
dynamic = ["dependencies", "optional-dependencies", "version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["stringparser"]
[tool.setuptools.package-data]
stringparser = ["py.typed"]
[tool.setuptools.dynamic]
dependencies = {file = "requirements.txt"}
optional-dependencies.test = {file = "requirements.test.txt"}
[project.urls]
"Homepage" = "https://github.com/hgrecco/stringparser"
"Bug Tracker" = "https://github.com/hgrecco/stringparser/issues"
[tool.setuptools_scm]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
pythonpath = "."
[tool.ruff]
select = ["E", "F", "I"]
extend-include = ["*.ipynb"]