diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..349288a --- /dev/null +++ b/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="Archey3", + version="0.3", + author="Laurie Clark-Michalek", + author_email="bluepeppers@archlinux.us", + description="A simple python scrip to display an Archlinux logo in ASCII art along with basic system information.", + license="GPL", + url="http://bluepeppers.github.com/archey3", + long_description=read("README.md"), + scripts=["archey3"] +) |