-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.72 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
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "appose"
version = "0.11.1.dev0"
description = "Appose: multi-language interprocess cooperation with shared memory."
license = "BSD-2-Clause"
authors = [{name = "Appose developers"}]
readme = "README.md"
keywords = ["java", "python", "cross-language", "interprocess"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Java Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
requires-python = ">=3.9"
dependencies = [
]
[dependency-groups]
dev = [
"build",
"mypy",
"pytest",
"ruff",
"toml",
"validate-pyproject[all]",
]
[project.urls]
homepage = "https://github.com/apposed/appose-python"
documentation = "https://github.com/apposed/appose-python/blob/main/README.md"
source = "https://github.com/apposed/appose-python"
download = "https://pypi.org/project/appose-python"
tracker = "https://github.com/apposed/appose/issues"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = "-s -p no:faulthandler"