summaryrefslogtreecommitdiff
path: root/tests/python3.3_bdist_egg_test/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/python3.3_bdist_egg_test/setup.py')
-rw-r--r--tests/python3.3_bdist_egg_test/setup.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/python3.3_bdist_egg_test/setup.py b/tests/python3.3_bdist_egg_test/setup.py
new file mode 100644
index 00000000..04caea74
--- /dev/null
+++ b/tests/python3.3_bdist_egg_test/setup.py
@@ -0,0 +1,13 @@
+from setuptools import setup
+
+setup(
+ name='python3.3_bdist_egg_test',
+ version='0.0.0',
+ description='Test',
+ license='BSD',
+ py_modules=['module'],
+ author='Marc Abramowitz',
+ author_email='marc@marc-abramowitz.com',
+ url='https://bitbucket.org/msabramo/python3.3_bdist_egg_test',
+ # zip_safe=False,
+)