split platform
This commit is contained in:
commit
8c9b09577d
2261 changed files with 676163 additions and 0 deletions
17
lib/python3.5/site-packages/wheel/test/simple.dist/setup.py
Normal file
17
lib/python3.5/site-packages/wheel/test/simple.dist/setup.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
from setuptools import setup
|
||||
|
||||
try:
|
||||
unicode
|
||||
def u8(s):
|
||||
return s.decode('unicode-escape').encode('utf-8')
|
||||
except NameError:
|
||||
def u8(s):
|
||||
return s.encode('utf-8')
|
||||
|
||||
setup(name='simple.dist',
|
||||
version='0.1',
|
||||
description=u8('A testing distribution \N{SNOWMAN}'),
|
||||
packages=['simpledist'],
|
||||
extras_require={'voting': ['beaglevote']},
|
||||
)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue