mirror of
https://github.com/KevinMidboe/Node-Com-Handler.git
synced 2025-10-29 17:50:27 +00:00
Major cleanup, added all old files (python2) to 'old_v0.1' folder
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,16 @@
|
||||
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='headers.dist',
|
||||
version='0.1',
|
||||
description=u8('A distribution with headers'),
|
||||
headers=['header.h']
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user