-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.55 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
[build-system]
requires = [
"setuptools >= 69.5",
"setuptools_scm >= 8.1",
]
build-backend = "setuptools.build_meta"
[project]
name = "jproperties"
authors = [
{ name = "Tilman Blumenbach", email = "tilman+pypi@ax86.net" },
]
description = "Java Property file parser and writer for Python"
readme = "README.rst"
license = { file = "LICENSE" }
keywords = [
"java", "property", "properties", "file", "parser", "reader", "writer"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development"
]
dependencies = [
# TODO: Drop dependency since we only support Python 3 nowadays.
"six ~= 1.13"
]
requires-python = ">= 3.8"
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/Tblue/python-jproperties"
Documentation = "https://github.com/Tblue/python-jproperties/blob/master/README.rst"
Changelog = "https://github.com/Tblue/python-jproperties/blob/master/CHANGELOG.rst"
Issues = "https://github.com/Tblue/python-jproperties/issues"
[project.scripts]
propconv = "jproperties:main"
[tool.setuptools_scm]
# This section deliberately left empty.