-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.73 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
[tool.poetry]
name = "sentient-switchblade"
version = "0.3.7"
description = "Unleash Dev Tool Mastery with a Flick of Your Wrist"
authors = ["JensRoland <mail@jensroland.com>"]
license = "MIT"
repository = "https://github.com/jensroland/sentient-switchblade"
homepage = "https://jensroland.com/sentient-switchblade"
readme = "README.md"
packages = [
{ include = "switchbladecli", from = "src" },
]
# Keywords description https://python-poetry.org/docs/pyproject/#keywords
keywords = [] #! Update me
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.scripts]
swb = "switchbladecli.cli.__main__:switchbladecli"
[tool.poetry.dependencies]
checksumdir = "^1.2.0"
click = "^8.0.3"
mergedeep = "^1.3.4"
PyGithub = "^1.58.1"
python = "^3.9"
tomlkit = "^0.11.7"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.0"
pytest-cov = "^4.0.0"
pytest-subprocess = "^1.5.0"
tox = "^4.5.1"
virtualenv-pyenv = "^0.5.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
# Directories that are not visited by pytest collector:
norecursedirs =["tests/files", "hooks", "*.egg", ".eggs", "dist", "build", "docs", ".tox", ".git", "__pycache__"]
pythonpath = "src"
[tool.coverage.report]
fail_under = 70
show_missing = true
skip_empty = true