Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/MILK/trunk/milk_server/setup.py@5261
Revision 5261,
759 bytes
checked in by cbyrom, 12 years ago
(diff) |
Lots of tidy ups to MILK codebase:
Implement new input search filters - with javascript datapickers to
pick the date ranges + add the vocab search ahead text input and
combine this with the text input.
Refactor discovery controller to tidy it up significantly - making more
structured and improving error handling and logging. Improve
templates for the search filter, splitting into multiple files to
organise better.
Various tidying up and tweaks of other codebase - e.g. standardising
use of global variables across app.
|
Line | |
---|
1 | from ez_setup import use_setuptools |
---|
2 | use_setuptools() |
---|
3 | from setuptools import setup, find_packages |
---|
4 | |
---|
5 | setup( |
---|
6 | name='milk_server', |
---|
7 | version="0.1.0", |
---|
8 | description="MILK...", |
---|
9 | #author="", |
---|
10 | #author_email="", |
---|
11 | url="http://ndg.nerc.ac.uk/", |
---|
12 | install_requires=["Pylons>=0.9.6", |
---|
13 | "genshi", |
---|
14 | "TurboKid", |
---|
15 | "ndgCommon" |
---|
16 | ], |
---|
17 | dependency_links = ["http://ndg.nerc.ac.uk/dist"], |
---|
18 | packages=find_packages(), |
---|
19 | include_package_data=True, |
---|
20 | test_suite = 'nose.collector', |
---|
21 | package_data={'milk_server': ['i18n/*/LC_MESSAGES/*.mo']}, |
---|
22 | entry_points=""" |
---|
23 | [paste.app_factory] |
---|
24 | main=milk_server:make_app |
---|
25 | [paste.app_install] |
---|
26 | main=pylons.util:PylonsInstaller |
---|
27 | """, |
---|
28 | ) |
---|
Note: See
TracBrowser
for help on using the repository browser.