guicurses/setup.py

19 lines
559 B
Python
Raw Permalink Normal View History

2016-12-15 00:07:37 +01:00
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "guicurses",
2017-03-26 03:14:02 +02:00
version = "0.5.2",
2016-12-15 00:07:37 +01:00
author = "Manuel Cortez",
author_email = "manuel@manuelcortez.net",
description = "A set of utilities for building accessible applications with curses",
license = "GPL V2",
keywords = "Gui curses accessibility speakup",
url = "https://github.com/raspberrypi-accesible/guicurses",
long_description=read('README.md'),
2016-12-15 00:07:37 +01:00
packages = ["guicurses"],
2017-03-26 03:14:02 +02:00
)