|
Revision 130, 0.6 kB
(checked in by trivoallan, 1 year ago)
|
cleverbox : implemented setup·py
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
from glob import glob |
|---|
| 4 |
from distutils.core import setup |
|---|
| 5 |
|
|---|
| 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'] |
|---|
| 17 |
) |
|---|