-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
35 lines (31 loc) · 1.2 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=3.8,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "javatoolkit"
version = "0.6.8"
description = "Collection of Gentoo-specific tools for Java"
readme = "README.md"
license = {file = "COPYING"}
requires-python = "~=3.10"
authors = [{name = "Gentoo Java Team", email = "[email protected]"}]
maintainers = [{name = "Gentoo Java Team", email = "[email protected]"}]
classifiers = [
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://wiki.gentoo.org/wiki/Project:Java"
Source = "https://gitweb.gentoo.org/proj/javatoolkit.git/"
[project.scripts]
"maven-helper.py" = "javatoolkit.scripts.maven_helper:main"
findclass = "javatoolkit.scripts.findclass:main"
buildparser = "javatoolkit.scripts.buildparser:main"
"class-version-verify.py" = "javatoolkit.scripts.class_version_verify:main"
jarjarclean = "javatoolkit.scripts.jarjarclean:main"
"eclipse-build.py" = "javatoolkit.scripts.eclipse_build:main"
[tool.flit.external-data]
directory = "data"