Skip to content
Snippets Groups Projects
Commit 66472bd9 authored by Julian Gethmann's avatar Julian Gethmann
Browse files

Delete unnecessary dependency on argparse

argparse is part of Python's build-in modules, so there is no need for
an external dependency.

Fixes issue #8
parent 8bf9833f
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ setup(
author='Dr. Meta',
description='This is a meta package to install the automatically generated NET-API 3.0, 3.1 and 3.2 definitions.',
url='https://git.scc.kit.edu/scc-net/net-suite/netdb-client-lib',
install_requires=['argparse', 'requests'],
install_requires=['requests'],
python_requires='>=3.7',
packages=['netdb_client'],
cmdclass={'build_py': APIGenBuild}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment