mirror of
https://git.freebsd.org/ports.git
synced 2025-06-12 16:20:33 -04:00
simple-parsing allows you to transform your ugly argparse scripts into beautifully structured, strongly typed little works of art. This isn't a fancy, complicated new command-line tool either, this simply adds new features to plain-old argparse! Using dataclasses, simple-parsing makes it easier to share and reuse command-line arguments - no more copy pasting! Supports inheritance, nesting, easy serialization to json/yaml, automatic help strings from comments, and much more!
8 lines
236 B
Python
8 lines
236 B
Python
--- setup.py.orig 2023-06-06 21:39:38 UTC
|
|
+++ setup.py
|
|
@@ -48,5 +48,4 @@ setuptools.setup(
|
|
python_requires=">=3.7",
|
|
install_requires=install_requires,
|
|
extras_require=extras_require,
|
|
- setup_requires=["pre-commit"],
|
|
)
|