-
Notifications
You must be signed in to change notification settings - Fork 43
/
pyproject.toml
55 lines (48 loc) · 1.4 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
[tool.poetry]
name = "beautysh"
version = "6.2.1"
description = "A Bash beautifier for the masses."
authors = ["Bernardo Meurer <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/lovesegfault/beautysh"
repository = "https://github.com/lovesegfault/beautysh"
keywords = ["beautify", "bash", "shell", "beautifier", "script", "auto"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Text Processing :: Filters",
"Topic :: Utilities"
]
include = ["LICENSE"]
[tool.poetry.scripts]
beautysh = "beautysh:main"
[tool.poetry.dependencies]
python = "^3.6.2"
colorama = "^0.4.4"
types-colorama = "^0.4.3"
types-setuptools = "^57.4.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
black = "^22.1"
isort = "^5.10.1"
mypy = "^0.931"
flake8 = "^4.0.1"
[tool.pytest.ini_options]
addopts = "-v -Wdefault"
[tool.black]
line-length = 99
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 99
skip_glob = ["/nix/store/*", "result/*"]
[build-system]
requires = ["poetry"]
build-backend = "poetry.core.masonry.api"