comparison setup.py @ 682:23c2a0e6df0b beta

changed official rhodecode favicon, from hg to some more generic removed some unneded icons update setup to add changelog
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 13 Nov 2010 00:23:36 +0100
parents 9c8a817462fe
children 341beaa9edba
comparison
equal deleted inserted replaced
681:9c8a817462fe 682:23c2a0e6df0b
37 description = ('Mercurial and Git repository browser/management with ' 37 description = ('Mercurial and Git repository browser/management with '
38 'build in push/pull server and full text search') 38 'build in push/pull server and full text search')
39 #long description 39 #long description
40 try: 40 try:
41 readme_file = 'README.rst' 41 readme_file = 'README.rst'
42 long_description = open(readme_file).read() 42 changelog_file = 'docs/changelog.rst'
43 long_description = open(readme_file).read() + '/n/n' + \
44 open(changelog_file).read()
45
43 except IOError, err: 46 except IOError, err:
44 sys.stderr.write("[WARNING] Cannot find file specified as " 47 sys.stderr.write("[WARNING] Cannot find file specified as "
45 "long_description (%s)\n skipping that file" % readme_file) 48 "long_description (%s)\n or changelog (%s) skipping that file" \
49 % (readme_file, changelog_file))
46 long_description = description 50 long_description = description
47 51
48 52
49 try: 53 try:
50 from setuptools import setup, find_packages 54 from setuptools import setup, find_packages