guicurses/setup.py

18 lines
558 B
Python
Raw 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",
2016-12-19 01:03:08 +01:00
version = "0.5.1",
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"],
)