| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: utf-8 -*- |
|---|
| 3 | |
|---|
| 4 | import setuptools |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | ################### Common settings ###################### |
|---|
| 8 | |
|---|
| 9 | setuptools.setup( |
|---|
| 10 | name='hatta', |
|---|
| 11 | version='1.6.0devel', |
|---|
| 12 | license='GNU General Public License (GPL)', |
|---|
| 13 | author='Radomir Dopieralski', |
|---|
| 14 | author_email='hatta@sheep.art.pl', |
|---|
| 15 | keywords='wiki wsgi web mercurial repository', |
|---|
| 16 | packages=['hatta'], |
|---|
| 17 | install_requires=[ |
|---|
| 18 | 'distribute', |
|---|
| 19 | 'werkzeug >=0.3', |
|---|
| 20 | 'mercurial >=1.0', |
|---|
| 21 | 'jinja2', |
|---|
| 22 | # 'pygments', |
|---|
| 23 | ], |
|---|
| 24 | tests_require=['py.test'], |
|---|
| 25 | data_files=[ |
|---|
| 26 | ('share/locale/ar/LC_MESSAGES', ['locale/ar/LC_MESSAGES/hatta.mo']), |
|---|
| 27 | ('share/locale/da/LC_MESSAGES', ['locale/da/LC_MESSAGES/hatta.mo']), |
|---|
| 28 | ('share/locale/de/LC_MESSAGES', ['locale/de/LC_MESSAGES/hatta.mo']), |
|---|
| 29 | ('share/locale/es/LC_MESSAGES', ['locale/es/LC_MESSAGES/hatta.mo']), |
|---|
| 30 | ('share/locale/fr/LC_MESSAGES', ['locale/fr/LC_MESSAGES/hatta.mo']), |
|---|
| 31 | ('share/locale/ja/LC_MESSAGES', ['locale/ja/LC_MESSAGES/hatta.mo']), |
|---|
| 32 | ('share/locale/pl/LC_MESSAGES', ['locale/pl/LC_MESSAGES/hatta.mo']), |
|---|
| 33 | ('share/locale/sv/LC_MESSAGES', ['locale/sv/LC_MESSAGES/hatta.mo']), |
|---|
| 34 | ('share/doc/hatta/examples', [ |
|---|
| 35 | 'examples/hatta.fcg', |
|---|
| 36 | 'examples/hatta.wsgi', |
|---|
| 37 | 'examples/extend_parser.py' |
|---|
| 38 | ]), |
|---|
| 39 | ], |
|---|
| 40 | include_package_data=True, |
|---|
| 41 | zip_safe=True, |
|---|
| 42 | platforms='any', |
|---|
| 43 | classifiers=[ |
|---|
| 44 | 'License :: OSI Approved :: GNU General Public License (GPL)', |
|---|
| 45 | 'Intended Audience :: Developers', |
|---|
| 46 | 'Intended Audience :: End Users/Desktop', |
|---|
| 47 | 'Intended Audience :: System Administrators', |
|---|
| 48 | 'Topic :: Communications', |
|---|
| 49 | 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', |
|---|
| 50 | 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', |
|---|
| 51 | 'Programming Language :: Python', |
|---|
| 52 | 'Operating System :: OS Independent', |
|---|
| 53 | 'Environment :: Web Environment', |
|---|
| 54 | ], |
|---|
| 55 | ) |
|---|