Browse Source

Fixed error when setup.py is exec'd from another file

pull/8/head
jaraco 14 years ago
parent
commit
29019e6c32
  1. 2
      setup.py

2
setup.py

@ -13,7 +13,7 @@ class DisabledTestCommand(Command):
raise RuntimeError("test command not supported on svg.charts. Use setup.py nosetests instead")
_this_dir = os.path.dirname(__file__)
_long_description = open(os.path.join(_this_dir, 'README.txt')).read().strip()
_long_description = open('readme.txt').read().strip()
setup_params = dict(
name = "svg.charts",

Loading…
Cancel
Save