Allow for a django project to live in a subdirectory of the repository
[fnpdjango.git] / setup.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 import os.path
5 from setuptools import setup, find_packages
6
7 def whole_trees(package_dir, paths):
8     def whole_tree(prefix, path):
9         files = []
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))
14             else:
15                 files.append(new_path)
16         return files
17     prefix = os.path.join(os.path.dirname(__file__), package_dir)
18     files = []
19     for path in paths:
20         files.extend(whole_tree(prefix, path))
21     return files
22
23 setup(
24     name='fnpdjango',
25     version='0.1.6',
26     author='Radek Czajka',
27     author_email='radoslaw.czajka@nowoczesnapolska.org.pl',
28     url = '',
29     packages=find_packages(),
30     package_data={
31         'fnpdjango': whole_trees('fnpdjango', ['templates', 'locale']),
32         'fnpdjango.deploy': ['templates/*.template'],
33         'fnpdjango.management.commands': ['babel.cfg'],
34     },
35     scripts=[
36         'bin/git-archive-all.sh',
37         'bin/fnpdjango_bootstrap.sh',
38     ],
39     install_requires=[
40         'django>=1.4,<1.6',
41         'textile',
42     ],
43     license='LICENSE',
44     description='.',
45     long_description="",
46 )