File tree 5 files changed +68
-0
lines changed
5 files changed +68
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+
4
+ - package-ecosystem : pip
5
+ directory : /
6
+ schedule :
7
+ interval : monthly
8
+ groups :
9
+ all :
10
+ patterns :
11
+ - ' *'
12
+
13
+ - package-ecosystem : github-actions
14
+ directory : /
15
+ schedule :
16
+ interval : monthly
17
+ groups :
18
+ all :
19
+ patterns :
20
+ - ' *'
Original file line number Diff line number Diff line change
1
+ name : python
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - main
10
+
11
+ jobs :
12
+
13
+ python :
14
+ strategy :
15
+ matrix :
16
+ os :
17
+ - macos-latest
18
+ - ubuntu-latest
19
+ - windows-latest
20
+ python-version :
21
+ - 3.9
22
+ - 3.12
23
+
24
+ runs-on : ${{ matrix.os }}
25
+
26
+ steps :
27
+
28
+ - uses : actions/checkout@v2
29
+
30
+ - uses : actions/setup-python@v2
31
+ with :
32
+ python-version : ${{ matrix.python-version }}
33
+
34
+ - run : pip install .[dev]
35
+
36
+ - run : ruff check .
37
+
38
+ - run : ruff format --check .
39
+
40
+ - run : python -m build --wheel
Original file line number Diff line number Diff line change 1
1
* .egg-info /
2
+ build /
3
+ dist /
Original file line number Diff line number Diff line change 1
1
# Ptah
2
2
3
+ [ ![ Ruff] ( https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json )] ( https://github.com/astral-sh/ruff )
4
+ [ ![ Documentation Status] ( https://readthedocs.org/projects/ptah/badge/?version=latest )] ( https://ptah.readthedocs.io/en/latest/?badge=latest )
5
+
3
6
Kubernetes development toolkit, with a focus on rapid iteration and local
4
7
hosting.
Original file line number Diff line number Diff line change @@ -16,3 +16,6 @@ doc = [
16
16
" mkdocs==1.6.0" ,
17
17
" mkdocs-material==9.5.25" ,
18
18
]
19
+
20
+ [tool .setuptools .package-data ]
21
+ ptah = [" **/*.py" ]
You can’t perform that action at this time.
0 commit comments