preparing for release

This commit is contained in:
Frédéric Péters 2009-04-09 07:52:28 +00:00
parent d1f53986b8
commit 3b97eab2bf
2 changed files with 7 additions and 5 deletions

View File

@ -1,5 +1,8 @@
include po/Makefile
include po/*.po
include po/*.pot
recursive-include extra/ *.py
recursive-include root/ *.html *.css *.png
recursive-include data/themes/default *.html *.css *.png *.gif *.jpg *.js
recursive-include data/themes/alto *.html *.css *.png *.gif *.jpg *.js
recursive-include wcs/qommon/static/ *.css *.png *.gif *.jpg *.js

View File

@ -15,15 +15,14 @@ def data_tree(destdir, sourcedir):
for root, dirs, files in os.walk(sourcedir):
l = [os.path.join(root, x) for x in files if os.path.splitext(x)[1] in extensions]
r.append( (root.replace(sourcedir, destdir, 1), l) )
if 'CVS' in dirs:
dirs.remove('CVS')
if '.svn' in dirs:
dirs.remove('.svn')
for vcs_dirname in ('CVS', '.svn', '.bzr', '.git'):
if vcs_dirname in dirs:
dirs.remove(vcs_dirname)
return r
distutils.core.setup(
name = 'wcs',
version = "0.0.0",
version = "1.0",
maintainer = "Frederic Peters",
maintainer_email = "fpeters@entrouvert.com",
url = "http://wcs.labs.libre-entreprise.org",