| 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 |
|---|
| 7 | |
|---|
| 8 | setup( |
|---|
| 9 | name='NotSoQuickWiki', |
|---|
| 10 | version="0.1.5", |
|---|
| 11 | description="Extension of Quciwiki Tutorial", |
|---|
| 12 | author='Philip Cooper', |
|---|
| 13 | author_email='philip.cooper@openvest.com', |
|---|
| 14 | url="http://www.openvest.com/trac/wiki/NotSoQuickWiki", |
|---|
| 15 | install_requires=["Pylons>=0.9.6.1","docutils==0.4","SQLAlchemy>=0.4.0beta5","Authkit>=0.4.0","rdflib>=2.4.0"], |
|---|
| 16 | # TODO need to add ToscaWidgets, twforms twTinyMCE (maybe ver on PasteScript and PasteDeploy ???) |
|---|
| 17 | packages=find_packages(exclude=['ez_setup']), |
|---|
| 18 | include_package_data=True, |
|---|
| 19 | test_suite='nose.collector', |
|---|
| 20 | package_data={'notsoquickwiki': ['i18n/*/LC_MESSAGES/*.mo']}, |
|---|
| 21 | #message_extractors = {'notsoquickwiki': [ |
|---|
| 22 | # ('**.py', 'python', None), |
|---|
| 23 | # ('templates/**.mako', 'mako', None), |
|---|
| 24 | # ('public/**', 'ignore', None)]}, |
|---|
| 25 | entry_points=""" |
|---|
| 26 | [paste.app_factory] |
|---|
| 27 | main = notsoquickwiki.config.middleware:make_app |
|---|
| 28 | |
|---|
| 29 | [paste.app_install] |
|---|
| 30 | main = pylons.util:PylonsInstaller |
|---|
| 31 | """, |
|---|
| 32 | ) |
|---|