forked from HassanEmam/PyP6Xer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 1.02 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyp6xer-patch"
version = "1.1.3"
description = "Parser for XER written in Python"
readme = "README.md"
license = { text = "GNU Lesser General Public License v3 or later (LGPLv3+)" }
authors = [
{ name = "BlackSmithSoft", email = "info@blacksmithsoft.com" }
]
requires-python = ">=3.8"
dependencies = [
]
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/blacksmithsoft/PyP6Xer"
[tool.setuptools.packages.find]
where = ["."]
include = ["xerparser*"]