More consistent host naming.
[TownSquare.git] / setup.py
blob4188d08b23e012eb2a6db18523952df2fb9ead6d
1 try:
2 from setuptools import setup, find_packages
3 except ImportError:
4 from ez_setup import use_setuptools
5 use_setuptools()
6 from setuptools import setup, find_packages
8 setup(
9 name='townsquare',
10 version='0.1',
11 description='',
12 author='',
13 author_email='',
14 url='',
15 install_requires=[
16 "Pylons>=0.9.7",
18 setup_requires=["PasteScript>=1.6.3"],
19 packages=find_packages(exclude=['ez_setup']),
20 include_package_data=True,
21 test_suite='nose.collector',
22 package_data={'townsquare': ['i18n/*/LC_MESSAGES/*.mo']},
23 #message_extractors={'townsquare': [
24 # ('**.py', 'python', None),
25 # ('templates/**.mako', 'mako', {'input_encoding': 'utf-8'}),
26 # ('public/**', 'ignore', None)]},
27 zip_safe=False,
28 paster_plugins=['PasteScript', 'Pylons'],
29 entry_points="""
30 [paste.app_factory]
31 main = townsquare.config.middleware:make_app
33 [paste.app_install]
34 main = pylons.util:PylonsInstaller
35 """,