Compare commits

..

No commits in common. "f414f8aa120f8faf8bcce3b0f25ee73643a144a2" and "4a9876c349155211d4e8c73160dc3b3ab2f3a8ee" have entirely different histories.

6 changed files with 7 additions and 42 deletions

View file

@ -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 }}

View file

@ -14,4 +14,4 @@ jobs:
- 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
View file

View file

@ -1,7 +1,5 @@
[build-system]
requires = [
"setuptools>=61.0",
]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
@ -17,17 +15,10 @@ classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"pynetbox>=7.4",
"requests>=2.32",
]
[license]
file = 'LICENSE.txt'
[project.urls]
Homepage = "https://git.creekorful.cloud/creekorful/pfsense-netbox-sync"
Issues = "https://git.creekorful.cloud/creekorful/pfsense-netbox-sync/issues"
[project.scripts]
pfnbsync = "pfsense_netbox_sync:main"
[license]
file = 'LICENSE.txt'
Issues = "https://git.creekorful.cloud/creekorful/pfsense-netbox-sync/issues"

View file

@ -1,5 +1,4 @@
pynetbox==7.4.1
requests==2.32.3
pylint==3.3.4
build==1.2.2.post1
twine==6.1.0
build==1.2.2.post1