Skip to content

Commit 25aeb88

Browse files
committed
add setup.cfg and setupegg
1 parent 9e23cb4 commit 25aeb88

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

setup.cfg

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[bdist_wheel]
2+
universal=1
3+
4+
[metadata]
5+
description-file = README.md

setupegg.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env python
2+
"""Wrapper to run setup.py using setuptools."""
3+
4+
# Import setuptools and call the actual setup
5+
import setuptools
6+
with open('setup.py', 'rb') as f:
7+
exec(compile(f.read(), 'setup.py', 'exec'))

0 commit comments

Comments
 (0)