setuptools

This commit is contained in:
Gabriel Falcão 2010-04-18 21:52:01 -03:00
parent dd27d7d909
commit d3eb114018
2 changed files with 29 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
*.pyc
.coverage
couleur.egg-info/

28
setup.py Normal file
View File

@ -0,0 +1,28 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# <Couleur - fancy shell output for python>
# Copyright (C) <2010> Gabriel Falcão <gabriel@nacaolivre.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import couleur
from setuptools import setup, find_packages
setup(name='couleur',
version=couleur.__version__,
description='ANSI terminal tool for python, colored shell and other ' \
'handy fancy features',
author=u'Gabriel Falcão',
author_email='gabriel@nacaolivre.org',
py_modules=['couleur'],
)