| 3 | | version = '1.0.0' |
| 4 | | readme = open('README.txt') |
| 5 | | long_description = readme.read() |
| 6 | | readme.close() |
| | 4 | def read(*rnames): |
| | 5 | return open(os.path.join(os.path.dirname(__file__), *rnames)).read() |
| | 6 | |
| | 7 | long_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' |