-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 867 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
39
40
41
42
43
44
45
[build-system]
requires = [
"setuptools>=64",
"wheel",
"setuptools-scm>=8"
]
build-backend = "setuptools.build_meta"
[project]
name = "chaquopy-stubgen"
description = "PEP484 python stub generator for Java classes accessed through Chaquopy on Android"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.13"
keywords = [
"stubgen",
"JPype",
"Python",
"Java",
"Chaquopy",
"Beeware",
"briefcase",
"Android",
"PEP484"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"JPype1>=1.6.0,<2",
]
dynamic = ["version"]
[dependency-groups]
dev = [
"pytest",
"mypy==1.19.1",
]
[tool.setuptools_scm]
version_file = "src/chaquopy_stubgen/_version.py"
[tool.pytest.ini_options]
addopts = "--doctest-modules -p no:faulthandler"