Skip to content

Commit d817e87

Browse files
committed
0.3
1 parent 520d8ec commit d817e87

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

README.rst

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ Generate Github-style HTML for unified diffs.
1212
Changes
1313
-------
1414

15+
0.3 (2014-04-06)
16+
~~~~~~~~~~~~~~~~
17+
18+
* Fix Python 3 issue when running as a command-line script.
19+
1520
0.2
1621
~~~
1722

setup.py

+19-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
setup(
44
name="ghdiff",
5-
version="0.2",
5+
version="0.3",
6+
description="Generate Github-style HTML for unified diffs.",
7+
long_description=open("README.rst").read(),
68
author="Patrick Strawderman",
79
author_email="[email protected]",
8-
url="http://github/kilink/ghdiff",
10+
url="https://github.com/kilink/ghdiff",
911
license="MIT",
1012
package_data={"": ["*.py", "*.txt", "*.css"]},
1113
include_package_data=True,
@@ -19,4 +21,19 @@
1921
"ghdiff = ghdiff:main"
2022
]
2123
},
24+
classifiers=['Development Status :: 5 - Production/Stable',
25+
'Environment :: Console',
26+
'Intended Audience :: Developers',
27+
'Natural Language :: English',
28+
'License :: OSI Approved :: MIT License',
29+
'Programming Language :: Python',
30+
'Programming Language :: Python :: 2',
31+
'Programming Language :: Python :: 2.6',
32+
'Programming Language :: Python :: 2.7',
33+
'Programming Language :: Python :: 3',
34+
'Programming Language :: Python :: 3.3',
35+
'Programming Language :: Python :: 3.4',
36+
'Topic :: Software Development',
37+
'Topic :: Utilities',
38+
],
2239
)

src/ghdiff.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import sys
99
import xml.sax.saxutils
1010

11-
__version__ = "0.2"
11+
__version__ = "0.3"
1212

1313
default_css = """\
1414
<style type="text/css">

0 commit comments

Comments
 (0)