| 6 | | setup(name='Cleverbox', |
| 7 | | version='0.3', |
| 8 | | description='Script for automating multiple trac instances deployment and maintenance.', |
| 9 | | author='Tristan Rivoallan', |
| 10 | | author_email='trivoallan@clever-age.com', |
| 11 | | url='http://www.clever-age.com', |
| 12 | | packages=['cleverbox', 'cleverbox.scripts'], |
| 13 | | scripts=['scripts/cleverbox-admin'], |
| 14 | | data_files=[('/usr/share/cleverbox', glob('assets/*'))], |
| 15 | | license='GPL', |
| 16 | | install_requires=['setuptools>=0.6b1', 'trac>=0.12'] |
| | 12 | setup( |
| | 13 | |
| | 14 | # Project identity |
| | 15 | name='Cleverbox', |
| | 16 | version='0.4.dev', |
| | 17 | description='Script for automating multiple trac instances deployment and maintenance.', |
| | 18 | long_description='The Cleverbox sits on top of [http://trac.edgewall.org Trac] and [http://subversion.tigris.org Subversion]. It provides an interactive shell for deploying and maintaining instances of both projects.', |
| | 19 | author='Tristan Rivoallan', |
| | 20 | author_email='trivoallan@clever-age.com', |
| | 21 | url='http://www.clever-age.org/trac/wiki/cleverbox', |
| | 22 | license='GPLv3', |
| | 23 | |
| | 24 | # Files |
| | 25 | packages=find_packages(), |
| | 26 | scripts=['scripts/cleverbox-admin'], |
| | 27 | data_files=[('/usr/share/cleverbox', glob('assets/*'))], |
| | 28 | |
| | 29 | # Dependencies |
| | 30 | install_requires=['setuptools>=0.6b1', 'trac>=0.10.3'] |