mirror of
https://git.freebsd.org/ports.git
synced 2025-07-14 15:59:18 -04:00
ChangeLog: https://github.com/sarugaku/shellingham/blob/1.3.2/CHANGELOG.rst Add a minimal `setup.py` file -- the upstream package has switched to the pep517 (https://www.python.org/dev/peps/pep-0517/) setup style, and in the absense of built-in support for that, hack things so that setuptools can still work.
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)
|
|
+
|