summaryrefslogtreecommitdiff
path: root/pcr/paraboley/setup.py
diff options
context:
space:
mode:
authorAurélien DESBRIÈRES <aurelien@hackers.camp>2014-06-13 14:01:51 +0200
committerAurélien DESBRIÈRES <aurelien@hackers.camp>2014-06-13 14:01:51 +0200
commit6a56e9dd97b0d1a482f2ce4bede5f8921866985c (patch)
tree8b71b62e32470711918822a57d3e0d772ad7e504 /pcr/paraboley/setup.py
parentc4e51555a57d7c2f9a65f681ac324f7b86d7f39a (diff)
Paraboley an eye on your system
Diffstat (limited to 'pcr/paraboley/setup.py')
-rw-r--r--pcr/paraboley/setup.py17
1 files changed, 17 insertions, 0 deletions
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"]
+)