Changeset 387:cc9ebcb0d69a


Ignore:
Timestamp:
Dec 6, 2011 5:22:32 PM (18 months ago)
Author:
slav0nic <slav0nic0@…>
Branch:
default
Message:

added MANIFEST.in file; now all data files included to package

Files:
1 added
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • setup.py

    r379 r387  
    11#!/usr/bin/env python 
    2 from setuptools import setup 
     2from setuptools import setup, find_packages 
    33from djangobb_forum import get_version 
    4  
    54 
    65setup(name='djangobb_forum', 
     
    1110    author='Alexey Afinogenov, Maranchuk Sergey', 
    1211    author_email='Maranchuk Sergey <slav0nic0@gmail.com>', 
    13     package_dir = {'djangobb_forum': 'djangobb_forum'}, 
    14     packages=['djangobb_forum'], 
    15     package_data = { 
    16         'djangobb_forum': [ 
    17             'locale/*/LC_MESSAGES/*', 
    18             'fixtures/*', 
    19             'management/*/*.py', 
    20             'markups/*', 
    21             'migrations/*', 
    22             'templates/djangobb_forum/*.html', 
    23             'templates/djangobb_forum/*/*.html', 
    24             'templates/search/indexes/djangobb_forum/*.txt', 
    25             'templatetags/*', 
    26             'tests/*', 
    27         ] 
    28     },     
    29     install_requires=['django>=1.2', 
    30               'pil>=1.1.7', 
    31               'django-messages==0.4.4', 
    32               'django-haystack', 
    33               'south', 
    34               'postmarkup' 
    35               ], 
     12    packages=find_packages(), 
     13    include_package_data=True, 
     14    install_requires=[ 
     15            'django>=1.2', 
     16            'pil>=1.1.7', 
     17            'django-messages==0.4.4', 
     18            'django-haystack', 
     19            'south', 
     20            'postmarkup', 
     21            'setuptools' 
     22            ], 
    3623    keywords="django forum bb", 
    3724) 
Note: See TracChangeset for help on using the changeset viewer.