-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (35 loc) · 1.02 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
[build-system]
requires = ["poetry==1.8.3"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "shpyx"
packages = [{include = "shpyx"}]
version = "0.0.30"
description = "Run shell commands in Python"
authors = ["Yossi Rozantsev"]
license = "MIT"
readme = "README.md"
keywords = ["shell", "bash", "terminal", "script"]
homepage = "https://github.com/Apakottur/shpyx"
repository = "https://github.com/Apakottur/shpyx"
documentation = "https://github.com/Apakottur/shpyx"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
include = ["shpyx/py.typed"]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
mypy = "1.11.2"
pre-commit = "3.8.0"
pytest = "8.3.3"
pytest-cov = "5.0.0"
pytest-mock = "3.14.0"
[tool.poetry.extras]
[tool.poetry.scripts]
[tool.poetry.urls]