| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | from glob import glob |
|---|
| 4 | from setuptools import setup, find_packages |
|---|
| 5 | |
|---|
| 6 | setup( |
|---|
| 7 | |
|---|
| 8 | # Project identity |
|---|
| 9 | name='Cleverbox', |
|---|
| 10 | version='0.4.1', |
|---|
| 11 | description='Script for automating multiple trac instances deployment and maintenance.', |
|---|
| 12 | 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.', |
|---|
| 13 | author='Tristan Rivoallan', |
|---|
| 14 | author_email='trivoallan@clever-age.com', |
|---|
| 15 | url='http://www.clever-age.org/trac/wiki/cleverbox', |
|---|
| 16 | license='GPLv3', |
|---|
| 17 | |
|---|
| 18 | # Files |
|---|
| 19 | packages=find_packages(), |
|---|
| 20 | scripts=['scripts/cleverbox-admin'], |
|---|
| 21 | data_files=[('/usr/share/cleverbox', glob('assets/*')), |
|---|
| 22 | ('/usr/share/doc/cleverbox', glob('docs/*'))], |
|---|
| 23 | |
|---|
| 24 | # Dependencies |
|---|
| 25 | install_requires=['setuptools>=0.6b1'] |
|---|
| 26 | ) |
|---|