summaryrefslogtreecommitdiff
path: root/tests/testdata/simple.dist/setup.py
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2018-05-26 20:51:16 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2018-07-17 15:02:50 +0300
commit89492505b968f6bf9ae9cc35f88f8ecd6ce6cbf1 (patch)
tree3364662e4c077856db8d06fa3d57b4b544da21f8 /tests/testdata/simple.dist/setup.py
parent353217fb496d61b3c5ce287b9c61a229e2ed27fe (diff)
downloadwheel-git-89492505b968f6bf9ae9cc35f88f8ecd6ce6cbf1.tar.gz
Renamed the wheel.tool package to wheel.cli and migrated CLI stuff there
The VerifyingZipFile class was also merged to the WheelFile class.
Diffstat (limited to 'tests/testdata/simple.dist/setup.py')
-rw-r--r--tests/testdata/simple.dist/setup.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/testdata/simple.dist/setup.py b/tests/testdata/simple.dist/setup.py
new file mode 100644
index 0000000..d2aaac9
--- /dev/null
+++ b/tests/testdata/simple.dist/setup.py
@@ -0,0 +1,8 @@
+from setuptools import setup
+
+setup(name='simple.dist',
+ version='0.1',
+ description=u'A testing distribution \N{SNOWMAN}',
+ packages=['simpledist'],
+ extras_require={'voting': ['beaglevote']},
+ )