-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 792 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 792 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
[tool.poetry]
name = "PyBash"
version = "0.3.5"
description = ">execute bash commands from python easily"
authors = ["Jay <jay.github0@gmail.com>"]
readme = "README.md"
packages = [{include = "pybash"}]
[tool.poetry.dependencies]
python = "^3.9"
ideas = { version = "^0.1.5", optional = true }
token-utils = "^0.1.8"
[tool.poetry.extras]
script = ["ideas"]
[tool.poetry.group.dev.dependencies]
black = "^22.12.0"
pytest = "^7.2.1"
isort = "^5.11.4"
flake8 = "^6.0.0"
autoflake = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
skip-string-normalization = 1
[tool.isort]
profile = "black"
line_length = 120
default_section = "THIRDPARTY"
known_first_party = "pybash"
known_third_party = ["ideas", "token_utils"]