added MANIFEST.in file; now all data files included to package
This commit is contained in:
parent
d933e75744
commit
faed4aab0b
3 changed files with 14 additions and 25 deletions
2
MANIFEST.in
Normal file
2
MANIFEST.in
Normal file
|
@ -0,0 +1,2 @@
|
|||
recursive-include djangobb_forum *
|
||||
global-exclude *.pyc
|
37
setup.py
37
setup.py
|
@ -1,8 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
from setuptools import setup
|
||||
from setuptools import setup, find_packages
|
||||
from djangobb_forum import get_version
|
||||
|
||||
|
||||
setup(name='djangobb_forum',
|
||||
version=get_version(),
|
||||
description='DjangoBB is a quick and simple forum which uses the Django Framework.',
|
||||
|
@ -10,28 +9,16 @@ setup(name='djangobb_forum',
|
|||
url='http://djangobb.org/',
|
||||
author='Alexey Afinogenov, Maranchuk Sergey',
|
||||
author_email='Maranchuk Sergey <slav0nic0@gmail.com>',
|
||||
package_dir = {'djangobb_forum': 'djangobb_forum'},
|
||||
packages=['djangobb_forum'],
|
||||
package_data = {
|
||||
'djangobb_forum': [
|
||||
'locale/*/LC_MESSAGES/*',
|
||||
'fixtures/*',
|
||||
'management/*/*.py',
|
||||
'markups/*',
|
||||
'migrations/*',
|
||||
'templates/djangobb_forum/*.html',
|
||||
'templates/djangobb_forum/*/*.html',
|
||||
'templates/search/indexes/djangobb_forum/*.txt',
|
||||
'templatetags/*',
|
||||
'tests/*',
|
||||
]
|
||||
},
|
||||
install_requires=['django>=1.2',
|
||||
'pil>=1.1.7',
|
||||
'django-messages==0.4.4',
|
||||
'django-haystack',
|
||||
'south',
|
||||
'postmarkup'
|
||||
],
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
'django>=1.2',
|
||||
'pil>=1.1.7',
|
||||
'django-messages==0.4.4',
|
||||
'django-haystack',
|
||||
'south',
|
||||
'postmarkup',
|
||||
'setuptools'
|
||||
],
|
||||
keywords="django forum bb",
|
||||
)
|
||||
|
|
Reference in a new issue