summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorRoberto Bertó <141527866+bertogravscale@users.noreply.github.com>2023-11-21 14:18:43 -0300
committerGitHub <noreply@github.com>2023-11-21 14:18:43 -0300
commit606df1053e0e36cb9fa50378c484187715adc3fe (patch)
tree4f47eec5d9c582c12470fbd91d9a4ad2490375b1 /setup.py
parentc724a620bd5e2b5233b2b3518bc47164a5fd562b (diff)
parentae98f19358bb47285c22b901c8153eeed79210e3 (diff)
downloadpyvyos-606df1053e0e36cb9fa50378c484187715adc3fe.tar.gz
pyvyos-606df1053e0e36cb9fa50378c484187715adc3fe.zip
Merge pull request #1 from gravscale/feature/retrieve_show_config
Feature/retrieve show config
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..302f29c
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,20 @@
+from setuptools import setup, find_packages
+
+setup(
+ name='vyapi',
+ version='0.1.1',
+ description='Python SDK for interacting with VyOS API',
+ author='Roberto Berto',
+ author_email='roberto.berto@gmail.com',
+ url='https://github.com/seu-usuario/vyapi',
+ packages=find_packages(),
+ install_requires=[
+ 'requests',
+ ],
+ classifiers=[
+ 'Programming Language :: Python :: 3',
+ 'License :: OSI Approved :: MIT License',
+ 'Operating System :: OS Independent',
+ ],
+ python_requires='>=3.6',
+)