blob: 10aacc922b44275dba29a89ff60ee9c73c99403f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env python
import os
from distutils.core import setup
def getDataFiles():
data_files = []
return data_files
setup(
name='pyRepRap',
version='0.3',
author='Stefan Blanke',
author_email='greenarrow@users.sourceforge.net',
description='Python library to control RepRap firmware using the SNAP protocol.',
packages=['reprap'],
scripts=['scripts/reprapcontrol', 'scripts/wxreprapcontrol'],
data_files = getDataFiles()
)
|