diff options
| author | Roberto Berto <roberto.berto@gmail.com> | 2023-11-21 11:31:15 -0300 |
|---|---|---|
| committer | Roberto Berto <roberto.berto@gmail.com> | 2023-11-21 11:31:15 -0300 |
| commit | 10949e4fd6360babf61c2ccdf44ab5e24b512226 (patch) | |
| tree | e9886661280b523df17a0d3ef7f74d767d814f72 /setup.py | |
| parent | c724a620bd5e2b5233b2b3518bc47164a5fd562b (diff) | |
| download | pyvyos-10949e4fd6360babf61c2ccdf44ab5e24b512226.tar.gz pyvyos-10949e4fd6360babf61c2ccdf44ab5e24b512226.zip | |
Initial commit for retrieve_config feature
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d85cfe2 --- /dev/null +++ b/setup.py @@ -0,0 +1,20 @@ +from setuptools import setup, find_packages + +setup( + name='vyapi', + version='0.1.0', + 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', +) |
