-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
69 lines (62 loc) · 2.08 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
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
62
63
64
65
66
67
68
69
[tool.poetry]
description = "install-jdk allows you to easily install latest Java OpenJDK version. Supports OpenJDK builds from Adoptium (previously AdoptOpenJDK), Corretto, and Zulu. Simplify your Java development with the latest OpenJDK builds."
name = "install-jdk"
version = "1.1.0"
keywords = [
"Java",
"OpenJDK",
"AdoptOpenJDK",
"Adoptium",
"Corretto",
"Zulu",
"JDK",
"JRE",
]
authors = ["Jason Snow <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jyksnw/install-jdk"
repository = "https://github.com/jyksnw/install-jdk"
documentation = "https://github.com/jyksnw/install-jdk"
packages = [{ include = "jdk" }]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Utilities",
]
[tool.poetry.urls]
Changelog = "https://github.com/jyksnw/install-jdk/releases"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.group.dev.dependencies]
black = {version = "^23.1.0", python = "^3.9"}
flake8 = {version = "^6.0.0", python = "^3.9"}
flake8-bandit = {version = "^4.1.1", python = "^3.9"}
flake8-bugbear = {version = "^23.2.13", python = "^3.9"}
flake8-docstrings = {version = "^1.7.0", python = "^3.9"}
isort = {version = "^5.12.0", python = "^3.9"}
pep8-naming = {version = "^0.13.3", python = "^3.9"}
pre-commit = {version = "^3.0.4", python = "^3.9"}
pre-commit-hooks = {version = "^4.4.0", python = "^3.9"}
darglint = {version = "^1.8.1", python = "^3.9"}
mypy = {version = "^1.0.1", python = "^3.9"}
typeguard = {version = "^2.13.3", python = "^3.9"}
pyupgrade = {version = "^3.3.1", python = "^3.9"}
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"