- Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
21 lines (19 loc) · 473 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (19 loc) · 473 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
fromdistutils.coreimportsetup
setup( name="stitchcode",
version="0.2",
author="Michael Aschauer",
author_email="m@ash.to",
py_modules=['stitchcode'],
license='LICENSE.txt',
description='Embroidery tools for python',
long_description=open('README.txt').read(),
url='https://github.com/backface/stitchcode',
#data_files=[
#('bin',
# ['exp2png.py',
# 'exp2exp.py',
# 'exp2svg.py',
# 'stitchconv.py']
#)]
scripts=['stitchconv.py'],
)