summaryrefslogtreecommitdiff
path: root/setup.py
blob: 6986a2802d493ff4f491de9d18aed3e93a3fd438 (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="Paraboley",
    version="0.3",
    author="Aurélien DESBRIÈRES",
    author_email="aurelien@hackers.camp",
    description="A simple python script to display a Parabola GNU/Linux-libre logo in ASCII art along with basic system information.",
    license="GPL",
    url="https://git.parabola.nu/packages/paraboley.git",
    long_description=read("README.md"),
    scripts=["paraboley"]
)