Changeset 79
- Timestamp:
- 07/07/08 09:17:40 (6 weeks ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
MANIFEST.in (modified) (1 diff)
-
scripts/build_dist.sh (modified) (2 diffs)
-
setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/MANIFEST.in
r30 r79 1 1 include examples/*.py 2 include man/pycg.1 2 3 include COPYING 3 4 -
trunk/scripts/build_dist.sh
r73 r79 1 1 #!/bin/bash 2 cd .. 2 3 rm -fr build dist 3 4 python setup.py clean … … 5 6 python setup.py bdist_wininst 6 7 cd dist 7 scp * gakman.com:/var/ html/slowchop.com/pycallgraph/download/8 scp * gakman.com:/var/www/slowchop.com/pycallgraph/download/ 8 9 -
trunk/setup.py
r74 r79 7 7 8 8 # Only install the man page if the correct directory exists 9 man_path = '/usr/share/man/man1/' 10 if path.exists(man_path): 11 data_files=[['/usr/share/man/man1/', ['man/pycg.1']]] 12 else: 13 data_files=None 9 # XXX: Commented because easy_install doesn't like it 10 #man_path = '/usr/share/man/man1/' 11 #if path.exists(man_path): 12 # data_files=[['/usr/share/man/man1/', ['man/pycg.1']]] 13 #else: 14 # data_files=None 15 16 data_files=None 14 17 15 18 setup(