-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.5 KB
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
58
59
60
61
62
63
64
65
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "trrex"
version = "0.0.7"
description = "Transform set of words to efficient regular expression"
authors = [
{name = "Daniel Mesejo", email = "mesejoleon@gmail.com"},
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"pip>=24.3.1",
"pytest-cov>=6.0.0",
]
[project.urls]
Homepage = "https://github.com/mesejo/trex"
[dependency-groups]
dev = [
"codecov>=2.1.13",
"coverage>=7.6.10",
"flashtext>=2.7",
"hypothesis>=6.123.1",
"pandas>=2.2.3",
"perfplot>=0.10.2",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
]
docs = [
"ipython>=8.32.0",
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.4",
"mkdocstrings[python]>=0.28.1",
"numpydoc>=1.8.0",
"pandas>=2.2.3",
"regex>=2024.11.6",
"ruff>=0.9.6",
"spacy>=3.8.4",
]
[tool.ruff.lint]
extend-select = ["I", "ICN"]
[tool.ruff.lint.per-file-ignores]
"trrex/__init__.py" = ["I001"]
[tool.ruff.lint.isort]
known-first-party = ["trrex"]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
lines-after-imports = 2