-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (69 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
81 lines (69 loc) · 1.91 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
[tool.poetry]
name = "octopin"
version="0.1.0.dev"
description = "Pin actions and analyse transitive dependencies of GitHub workflows / actions"
authors = [
"Thomas Neidhart <thomas.neidhart@gmail.com>",
]
license = "MIT License"
readme = "README.md"
homepage = "https://github.com/TinyGearsOrg/octopin"
repository = "https://github.com/TinyGearsOrg/octopin"
keywords = ["python"]
packages = [
{ include = "octopin", from = "src" }
]
include = [
{ path = "*.md", format = "sdist" },
{ path = "src/octopin/py.typed" },
{ path = "docs", format = "sdist" },
{ path = "tests", format = "sdist" }
]
classifiers = [
'Development Status :: 1 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Typing :: Typed',
]
[tool.poetry.scripts]
octopin = "octopin.console:cli"
[tool.poetry.dependencies]
python = "^3.10"
cleo = "^2.1"
PyYAML = "^6.0"
semver = "^3.0"
aiohttp = "^3.9"
aiohttp-client-cache = "^0.10"
aiosqlite = "^0.19"
anytree = "^2.12"
[tool.poetry.group.dev.dependencies]
flake8 = ">=6.0"
pre-commit = ">=3.3"
black = ">=23.3"
[tool.poetry.group.test.dependencies]
pytest = ">=7.3"
parameterized = "^0.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "7.3"
testpaths = ["tests"]
pythonpath = [".", "src/httpbin"]
[tool.black]
color = true
line-length = 120
target-version = ['py310']
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 120
skip_gitignore = true
known_first_party = ['test']
[tool.mypy]
ignore_missing_imports = true
exclude = "dist|build"