Show
Ignore:
Timestamp:
10/18/09 21:40:10 (3 years ago)
Author:
mauro
Message:

* rebuild catalog action on biosqlroot's view and triggered by modify event
* choice seqrecord key field (fix #6)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plone4bio.biosql/trunk/setup.py

    r94 r112  
    11from setuptools import setup, find_packages 
     2version = '1.0.1' 
    23 
    3 version = '1.0.0' 
    4 readme = open('README.txt') 
    5 long_description = readme.read() 
    6 readme.close() 
     4def read(*rnames): 
     5    return open(os.path.join(os.path.dirname(__file__), *rnames)).read() 
     6 
     7long_description = ( 
     8    read('README.txt') 
     9    + '\n' + 
     10    'Detailed Documentation\n' 
     11    '**********************\n' 
     12    + '\n' + 
     13    read('src', 'plone4bio', 'biosql', 'README.txt') 
     14    + '\n' + 
     15    'Contributors\n' 
     16    '************\n' 
     17    + '\n' + 
     18    read('docs', 'AUTHORS.txt') 
     19    + '\n' + 
     20    'Change history\n' 
     21    '**************\n' 
     22    + '\n' + 
     23    read('docs', 'CHANGES.txt') 
     24    + '\n' + 
     25   'Download\n' 
     26    '********\n' 
    727 
    828tests_require = ['collective.testcaselayer'] 
     
    3454          # -*- Extra requirements: -*- 
    3555          'z3c.sqlalchemy', 
     56          'collective.monkeypatcher', 
    3657      ], 
    3758      tests_require=tests_require,