Skip to content

Commit 97ccb46

Browse files
committed
finalized 0.1 release
1 parent 0038599 commit 97ccb46

File tree

6 files changed

+67
-2
lines changed

6 files changed

+67
-2
lines changed

CHANGES.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Changelog
2+
=========
3+
4+
5+
0.1 (2013-03-29)
6+
------------------
7+
8+
* First release.

MANIFEST.in

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
include LICENSE
2+
include *.txt
3+
include *.rst
4+
recursive-include docs *
5+
recursive-include testsuite *
6+
recursive-exclude docs *.pyc
7+
recursive-exclude docs *.pyo
8+
recursive-exclude testsuite *.pyc
9+
recursive-exclude testsuite *.pyo
10+
prune docs/_build

README.md

-2
This file was deleted.

README.rst

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
whiptail
2+
==================================================
3+
4+
Use whiptail to display dialog boxes from shell scripts.
5+
6+
Installation
7+
------------
8+
9+
$ pip install whiptail
10+
11+
Links
12+
-----
13+
14+
* `Fork me on GitHub <https://github.com/marwano/whiptail>`_
15+

setup.py

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import os
2+
import re
3+
from setuptools import setup
4+
5+
README = open('README.rst').read()
6+
CHANGES = open('CHANGES.txt').read()
7+
VERSION = re.findall("__version__ = '(.*)'", open('whiptail.py').read())[0]
8+
9+
setup(
10+
name='whiptail',
11+
version=VERSION,
12+
description="Collection of useful functions and classes",
13+
long_description=README + '\n\n' + CHANGES,
14+
keywords='whiptail',
15+
author='Marwan Alsabbagh',
16+
author_email='marwan.alsabbagh@gmail.com',
17+
url='https://github.com/marwano/whiptail',
18+
license='BSD',
19+
py_modules=['whiptail'],
20+
namespace_packages=[],
21+
include_package_data=True,
22+
install_requires=['utile>=0.1'],
23+
classifiers=[
24+
'Development Status :: 5 - Production/Stable',
25+
'Environment :: Console',
26+
'Intended Audience :: Developers',
27+
'License :: OSI Approved :: BSD License',
28+
'Operating System :: OS Independent',
29+
'Programming Language :: Python',
30+
'Programming Language :: Python :: 2.7',
31+
],
32+
)

whiptail.py

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# Copyright (C) 2013 Marwan Alsabbagh
33
# license: BSD, see LICENSE for more details.
44

5+
__version__ = '0.1'
6+
57
import sys
68
import shlex
79
from utile import save_args, flatten

0 commit comments

Comments
 (0)