We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e23cb4 commit 25aeb88Copy full SHA for 25aeb88
setup.cfg
@@ -0,0 +1,5 @@
1
+[bdist_wheel]
2
+universal=1
3
+
4
+[metadata]
5
+description-file = README.md
setupegg.py
@@ -0,0 +1,7 @@
+#!/usr/bin/env python
+"""Wrapper to run setup.py using setuptools."""
+# Import setuptools and call the actual setup
+import setuptools
6
+with open('setup.py', 'rb') as f:
7
+ exec(compile(f.read(), 'setup.py', 'exec'))
0 commit comments