Skip to content

Commit

Permalink
1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Oct 20, 2013
1 parent c13f4a9 commit 40526f4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

1.0.4
-----


1.0.3
-----

Expand Down
15 changes: 14 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
from setuptools import setup, find_packages

import sys
import os

f = open('README.rst')
long_description = f.read().strip()
Expand All @@ -50,7 +51,19 @@
if sys.version_info[0] == 2 and sys.version_info[1] < 7:
requires.append("ordereddict")

version = '1.0.3'
# Conditionally install man pages into the system or the virtualenv.
if 'VIRTUAL_ENV' in os.environ:
man_prefix = os.environ['VIRTUAL_ENV']
else:
man_prefix = '/usr'

data_files = [
(man_prefix + '/share/man/man1/', [
'man/ansi2html.1',
]),
]

version = '1.0.4'

if '--version' in sys.argv:
print(version)
Expand Down

0 comments on commit 40526f4

Please sign in to comment.