Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/cowsclient/trunk/setup.py@6081
Revision 6081,
881 bytes
checked in by spascoe, 11 years ago
(diff) |
Incrementing version number to 1.0 for operational service
|
Line | |
---|
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='cowsclient', |
---|
10 | version="1.0", |
---|
11 | #description='', |
---|
12 | #author='', |
---|
13 | #author_email='', |
---|
14 | #url='', |
---|
15 | install_requires=["Pylons==0.9.6.1", "genshi"], |
---|
16 | packages=find_packages(exclude=['ez_setup']), |
---|
17 | include_package_data=True, |
---|
18 | test_suite='nose.collector', |
---|
19 | package_data={'cowsclient': ['i18n/*/LC_MESSAGES/*.mo']}, |
---|
20 | #message_extractors = {'cowsclient': [ |
---|
21 | # ('**.py', 'python', None), |
---|
22 | # ('templates/**.mako', 'mako', None), |
---|
23 | # ('public/**', 'ignore', None)]}, |
---|
24 | entry_points=""" |
---|
25 | [paste.app_factory] |
---|
26 | main = cowsclient.config.middleware:make_app |
---|
27 | |
---|
28 | [paste.app_install] |
---|
29 | main = pylons.util:PylonsInstaller |
---|
30 | """, |
---|
31 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.