-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 752 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyxml2xpath"
dynamic = ["version"]
dependencies = [
"lxml"
]
requires-python = ">=3.9"
authors = [
{name = "Luis Muñoz", email = "south.minds@gmail.com"}
]
description = "Generate xpath expressions from XML document."
readme = "README.md"
license = "GPL-3.0"
keywords = ["xpath", "xml"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python"
]
[project.urls]
Repository = "https://github.com/mluis7/pyxml2xpath.git"
[project.scripts]
pyxml2xpath = "xml2xpath.xml2xpath:main"
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.setuptools.dynamic]
version = {file = "VERSION"}