summaryrefslogtreecommitdiff
path: root/setup.py
blob: b1986b5298df1540b1626d2d7fe60a838eed30b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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.4",
    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"]
)