-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 1.13 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
[project]
name = "file-path-parser"
version = "0.1.5"
description = "Universal, extensible Python library for extracting structured information (groups, dates, times, custom patterns) from file names and paths."
authors = [
{name = "migutin83", email = "migutin83@yandex.ru"}
]
readme = "README.md"
license = "MIT"
keywords = ["filename", "parser", "path", "date", "time", "regex", "extract", "pattern"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
]
packages = [
{ include = "file_path_parser", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0"
[tool.poetry.scripts]
file-path-parser = "file_path_parser.cli:main"
[tool.poetry.urls]
Homepage = "https://github.com/omigutin/file_path_parser"
Issues = "https://github.com/users/omigutin/projects/1"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"