diff --git a/.gitignore b/.gitignore index 004a8d7..9b374f9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.pyc .coverage +couleur.egg-info/ diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f7c2bba --- /dev/null +++ b/setup.py @@ -0,0 +1,28 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Copyright (C) <2010> Gabriel Falcão +# +# 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 . +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'], +)