Compare commits
No commits in common. "f414f8aa120f8faf8bcce3b0f25ee73643a144a2" and "4a9876c349155211d4e8c73160dc3b3ab2f3a8ee" have entirely different histories.
f414f8aa12
...
4a9876c349
6 changed files with 7 additions and 42 deletions
|
@ -1,25 +0,0 @@
|
||||||
name: CD
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- '*'
|
|
||||||
jobs:
|
|
||||||
ci:
|
|
||||||
runs-on: docker
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- uses: actions/setup-python@v5
|
|
||||||
with:
|
|
||||||
python-version: '3.13'
|
|
||||||
cache: 'pip'
|
|
||||||
|
|
||||||
- run: pip install -r requirements.txt
|
|
||||||
|
|
||||||
- run: python3 -m build
|
|
||||||
|
|
||||||
- run: twine upload dist/*
|
|
||||||
env:
|
|
||||||
TWINE_USERNAME: __token__
|
|
||||||
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
|
|
|
@ -14,4 +14,4 @@ jobs:
|
||||||
|
|
||||||
- run: pip install -r requirements.txt
|
- run: pip install -r requirements.txt
|
||||||
|
|
||||||
- run: pylint --max-line-length=120 pfsense_netbox_sync
|
- run: pylint --max-line-length=120 app
|
0
app/__init__.py
Normal file
0
app/__init__.py
Normal file
|
@ -1,7 +1,5 @@
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = [
|
requires = ["setuptools>=61.0"]
|
||||||
"setuptools>=61.0",
|
|
||||||
]
|
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
|
@ -17,17 +15,10 @@ classifiers = [
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
]
|
]
|
||||||
dependencies = [
|
|
||||||
"pynetbox>=7.4",
|
[license]
|
||||||
"requests>=2.32",
|
file = 'LICENSE.txt'
|
||||||
]
|
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
Homepage = "https://git.creekorful.cloud/creekorful/pfsense-netbox-sync"
|
Homepage = "https://git.creekorful.cloud/creekorful/pfsense-netbox-sync"
|
||||||
Issues = "https://git.creekorful.cloud/creekorful/pfsense-netbox-sync/issues"
|
Issues = "https://git.creekorful.cloud/creekorful/pfsense-netbox-sync/issues"
|
||||||
|
|
||||||
[project.scripts]
|
|
||||||
pfnbsync = "pfsense_netbox_sync:main"
|
|
||||||
|
|
||||||
[license]
|
|
||||||
file = 'LICENSE.txt'
|
|
|
@ -1,5 +1,4 @@
|
||||||
pynetbox==7.4.1
|
pynetbox==7.4.1
|
||||||
requests==2.32.3
|
requests==2.32.3
|
||||||
pylint==3.3.4
|
pylint==3.3.4
|
||||||
build==1.2.2.post1
|
build==1.2.2.post1
|
||||||
twine==6.1.0
|
|
Loading…
Add table
Add a link
Reference in a new issue