setup.py sdist works now use-distutils
authorTero Marttila <terom@fixme.fi>
Wed, 03 Jun 2009 19:12:39 +0300
branchuse-distutils
changeset 42 146997912efb
parent 41 3b1579a7bffb
child 43 d229f64aeb39
setup.py sdist works now
MANIFEST.in
setup.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MANIFEST.in	Wed Jun 03 19:12:39 2009 +0300
@@ -0,0 +1,3 @@
+include degal/templates/*.html
+include degal/static/*
+include cgi-bin/*
--- a/setup.py	Wed Jun 03 19:03:28 2009 +0300
+++ b/setup.py	Wed Jun 03 19:12:39 2009 +0300
@@ -22,6 +22,10 @@
         'degal'
     ],
 
+    package_data    = {
+        'degal': [ 'templates/*.html', 'static/*' ],
+    },
+
     scripts         = [
         'scripts/degal'
     ],