diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-14 19:20:46 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-14 19:20:46 -0400 |
commit | f7fd1d99d87f11c41cf09f881b1aeb950a3c8e13 (patch) | |
tree | 95910fb3078e1136e35aaa6d9f0f251cdb4ca1a8 /pcr/paraboley/setup.py | |
parent | 09c1bb45d89c78a9fd80c7a500cb29a0908dc668 (diff) | |
parent | cd640e7ca0a8968edf887d03db8224334f663e84 (diff) |
Merge branch 'master' of git://projects.parabolagnulinux.org/abslibre
Diffstat (limited to 'pcr/paraboley/setup.py')
-rw-r--r-- | pcr/paraboley/setup.py | 17 |
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"] +) |