forked from the-pod-shop/opnsense-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e70f6a
commit cd5e874
Showing
4 changed files
with
14 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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=[ | ||
|