Skip to content

Commit

Permalink
v.0.1.24a0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ji-podhead committed Nov 13, 2024
1 parent 1e70f6a commit cd5e874
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 123 deletions.
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
<<<<<<< HEAD
## about opnsense-helper
=======
# opnsense-helper
>>>>>>> 756ca87761d52455b6de04d58e247c8f08cf7003
<table>
<tr>
<td>
Expand All @@ -18,12 +14,9 @@
</td>
</tr>
</table>
<<<<<<< HEAD

***The backend framework for opnsense***
=======
>>>>>>> 756ca87761d52455b6de04d58e247c8f08cf7003

- create, assign and enable lan / phy interfaces and all the other stuff that is ***Not enabled*** in the opnsense api
- use the config_manager to apply all your configs in runtime at once
- uses the opnsense backend via shh
Expand Down
109 changes: 0 additions & 109 deletions python/README.md

This file was deleted.

4 changes: 1 addition & 3 deletions python/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/bin/sh
python setup.py bdist_wheel
pip install --upgrade .
pip install --upgrade build --force
python /home/ji/Dokumente/podshop-org/opnsense-helper/python/opnsense_helper/examples/add_vlans.py
pip install --upgrade build .
15 changes: 12 additions & 3 deletions python/setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
from setuptools import setup
from setuptools import setup

# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent.parent
long_description = (this_directory / "README.md").read_text()

setup(
name='opnsense_helper',
version='0.1.20',
description='assign lan interfaces, create vlans, vlan-interfaces and setup dhcp in a single script.',
url='https://github.com/the-pod-shop/opnsense-helper/',
version='0.1.24a',
description='backend api for opnsense. assign lan interfaces, create vlans, vlan-interfaces and setup dhcp in a single script.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://ji-podhead.github.io/opnsense-helper/.docs/_build/html/index.html',
author='ji-podhdead',
author_email='[email protected]',
license='BSD 2-clause',
packages=['opnsense_helper', "opnsense_helper.utils", "opnsense_helper.scripts", "opnsense_helper.commands", "opnsense_helper.config_manager"],
# package_dir={'': 'python'},
install_requires=['paramiko',
],
classifiers=[
Expand Down

0 comments on commit cd5e874

Please sign in to comment.