Skip to content
Snippets Groups Projects
Commit 7e1a76cd authored by Christophe Simonis's avatar Christophe Simonis
Browse files

[FIX] setup.py: correct windows install

bzr revid: chs@openerp.com-20130115104047-6hrl825bn5pkmoo6
parent fec027e8
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,12 @@ def data():
base = os.path.join('pytz', root[len(tzdir) + 1:])
r[base] = [os.path.join(root, f) for f in filenames]
import docutils
dudir = os.path.dirname(docutils.__file__)
for root, _, filenames in os.walk(dudir):
base = os.path.join('docutils', root[len(dudir) + 1:])
r[base] = [os.path.join(root, f) for f in filenames if not f.endswith(('.py', '.pyc', '.pyo'))]
return r.items()
def gen_manifest():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment