From 6a56e9dd97b0d1a482f2ce4bede5f8921866985c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20DESBRI=C3=88RES?= Date: Fri, 13 Jun 2014 14:01:51 +0200 Subject: Paraboley an eye on your system --- pcr/paraboley/setup.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pcr/paraboley/setup.py (limited to 'pcr/paraboley/setup.py') diff --git a/pcr/paraboley/setup.py b/pcr/paraboley/setup.py new file mode 100644 index 000000000..c80486ce1 --- /dev/null +++ b/pcr/paraboley/setup.py @@ -0,0 +1,17 @@ +import os +from setuptools import setup + +def read(fname): + return open(os.path.join(os.path.dirname(__file__), fname)).read() + +setup( + name="Paraboley", + version="0.1", + author="Aurélien DESBRIÈRES", + author_email="aurelien@hackers.camp", + description="A simple python scrip to display an Parabola GNU / Linux-libre logo in ASCII art along with basic system information.", + license="GPL", + url="https://github.com/XL04D/paraboley", + long_description=read("README.md"), + scripts=["paraboley"] +) -- cgit v1.2.3-2-g168b