Skip to content

Commit

Permalink
Updated version numbers and files.
Browse files Browse the repository at this point in the history
  • Loading branch information
FSX committed Jun 16, 2011
1 parent 97b5a56 commit 347ab7f
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ News/Changelog
==============


0.3.0 (2011-06-??)
0.3.0 (2011-06-16)
------------------

* Added Python 3 support.
Expand Down
File renamed without changes.
22 changes: 15 additions & 7 deletions README.md → README.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Pantyshot
=========

A Python binding for [Upskirt][1].
A Python binding for Upskirt_.

[1]: https://github.com/tanoku/upskirt
.. _Upskirt: https://github.com/tanoku/upskirt


Documentation can be found at: https://pantyshot.61924.nl/
Expand All @@ -12,17 +12,25 @@ Documentation can be found at: https://pantyshot.61924.nl/
Installation
------------

With pip::

pip install pantyshot

Or manually::

python setup.py install


Usage
-----

Without any extensions or flags enabled::

import pantyshot

pantyshot.html('Hello, world!')

With extensions and render flags.
With extensions and render flags::

import pantyshot as p

Expand All @@ -32,7 +40,7 @@ With extensions and render flags.
p.HTML_EXPAND_TABS
)

In combination with `functools.partial`.
In combination with ``functools.partial``::

import functools
import pantyshot as p
Expand All @@ -44,7 +52,7 @@ In combination with `functools.partial`.
)
markdown('Awesome!')

Or generate a table of contents.
Or generate a table of contents::

pantyshot.toc('''
# Header one
Expand All @@ -60,7 +68,7 @@ Or generate a table of contents.
Extensions & render flags
-------------------------

Extensions:
Extensions::

EXT_AUTOLINK
EXT_LAX_HTML_BLOCKS
Expand All @@ -70,7 +78,7 @@ Extensions:
EXT_FENCED_CODE
EXT_SPACE_HEADERS

Render flags:
Render flags::

HTML_GITHUB_BLOCKCODE
HTML_SKIP_HTML
Expand Down
2 changes: 1 addition & 1 deletion docs/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ The functionality of the following constants is explained at *Render Flags*.

## Changelog

### 0.3.0 (2011-06-??)
### 0.3.0 (2011-06-16)

* Added Python 3 support.
* Updated Upskirt files; See commits from 2011-06-05 to 2011-06-09:
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

setup(
name='pantyshot',
version='0.2.1',
description='Python extension for Upskirt.',
version='0.3.0',
description='A Python binding for Upskirt.',
author='Frank Smit',
author_email='[email protected]',
url='https://github.com/FSX/pantyshot',
url='https://pantyshot.61924.nl/',
license='MIT',
long_description=open('README.txt').read(),
ext_modules=[Extension('pantyshot', [
'src/pantyshot.c',
'src/upskirt/array.c',
Expand Down

0 comments on commit 347ab7f

Please sign in to comment.