-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.26 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
[tool.poetry]
name = "java-access-bridge-wrapper"
version = "2.0.0"
description = "Python wrapper for the Windows Java Access Bridge"
license = "Apache-2.0"
readme = "README.md"
authors = [
"Robocorp <[email protected]>",
]
repository = "https://github.com/robocorp/java-access-bridge-wrapper.git"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
packages = [
{ include = "JABWrapper", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.9.1"
pywin32 = { version = ">=300,<=311", platform = "win32" }
[tool.poetry.dev-dependencies]
black = "^24.9.1"
flake8 = "^7.3.0"
isort = "^6.1.0"
pytest = "^8.4.2"
[tool.poetry.scripts]
java_tree_reader = 'JABWrapper.context_tree_reader:main'
[tool.black]
line-length = 120 # subject to change after deciding upon a standard
target-version = ["py38", "py39", "py310"]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"