forked from marwano/whiptail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 793 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
try:
readme = read('README.rst')
changes = read('whiptailPy', 'CHANGES.txt')
except:
readme = "Use whiptail to display dialog boxes from shell scripts"
changes = ""
version = 1.0
setup(
name='whiptailPy',
version=version,
description="Use whiptail to display dialog boxes from shell scripts",
long_description=readme + '\n\n' + changes,
keywords='whiptail',
author='filips',
author_email='filip.stamcar@hotmail.com',
url='https://github.com/fillips/whiptail',
py_modules=['whiptailPy'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
],
)