32 lines
855 B
Python
32 lines
855 B
Python
|
try:
|
||
|
from setuptools import setup, find_packages
|
||
|
except ImportError:
|
||
|
from ez_setup import use_setuptools
|
||
|
use_setuptools()
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name='Yolanda',
|
||
|
version="",
|
||
|
#description='',
|
||
|
#author='',
|
||
|
#author_email='',
|
||
|
#url='',
|
||
|
install_requires=["Pylons>=0.9.6.1"],
|
||
|
packages=find_packages(exclude=['ez_setup']),
|
||
|
include_package_data=True,
|
||
|
test_suite='nose.collector',
|
||
|
package_data={'yolanda': ['i18n/*/LC_MESSAGES/*.mo']},
|
||
|
#message_extractors = {'yolanda': [
|
||
|
# ('**.py', 'python', None),
|
||
|
# ('templates/**.mako', 'mako', None),
|
||
|
# ('public/**', 'ignore', None)]},
|
||
|
entry_points="""
|
||
|
[paste.app_factory]
|
||
|
main = yolanda.config.middleware:make_app
|
||
|
|
||
|
[paste.app_install]
|
||
|
main = pylons.util:PylonsInstaller
|
||
|
""",
|
||
|
)
|