Aggiunto setup.py

Leonardo Robol [2009-10-02 07:29]
Aggiunto setup.py
Filename
setup.py
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..e1d6774
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,14 @@
+from distutils.core import setup
+
+setup (name='DrPrint',
+       version='0.3',
+       author='Leonardo Robol',
+       author_email='leo@robol.it',
+       url='http://www.robol.it/~leonardo/',
+       license='GPL',
+       packages = ['DrPrintGui'],
+       py_modules=['DrPrintBackend'],
+       data_files=[('bin', ['drprint']),
+                   ('share/applications',['drprint.desktop']),
+                   ('share/pixmaps', ['drprint.svg']) ],
+       )
ViewGit