mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 22:20:35 -04:00
Work around the new-style PEP-517 configuration by creating our own setup.py, as suggested by sunpoet@ ChangeLog: https://github.com/ansible/ansible-lint/blob/v4.2.0/CHANGELOG.rst
8 lines
166 B
Python
8 lines
166 B
Python
--- setup.py.orig 2019-12-09 07:04:35 UTC
|
|
+++ setup.py
|
|
@@ -0,0 +1,5 @@
|
|
+
|
|
+import setuptools
|
|
+if __name__ == "__main__":
|
|
+ setuptools.setup(use_scm_version=True)
|
|
+
|