14 lines
337 B
Python
14 lines
337 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
author='Gwenaël Rémond',
|
|
author_email='gremond@cadoles.com',
|
|
name='tiramisu',
|
|
version='1.0',
|
|
description='configuration management tool',
|
|
url='http://labs.libre-entreprise.org/projects/tiramisu',
|
|
packages=['tiramisu']
|
|
)
|