2 # -*- coding: utf-8 -*-
5 from setuptools import setup, find_packages
7 def whole_trees(package_dir, paths):
8 def whole_tree(prefix, path):
10 for f in (f for f in os.listdir(os.path.join(prefix, path)) if not f[0]=='.'):
11 new_path = os.path.join(path, f)
12 if os.path.isdir(os.path.join(prefix, new_path)):
13 files.extend(whole_tree(prefix, new_path))
15 files.append(new_path)
17 prefix = os.path.join(os.path.dirname(__file__), package_dir)
20 files.extend(whole_tree(prefix, path))
26 author='Radek Czajka',
27 author_email='radoslaw.czajka@nowoczesnapolska.org.pl',
29 packages=find_packages(),
31 'fnpdjango': whole_trees('fnpdjango', ['templates', 'locale']),
32 'fnpdjango.deploy': ['templates/*.template'],
35 'bin/git-archive-all.sh',
36 'bin/fnpdjango_bootstrap.sh',