Changeset 5085
- Timestamp:
- 08/04/08 04:02:03 (4 months ago)
- Files:
-
- trunk/setup.cfg (modified) (2 diffs)
- trunk/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/setup.cfg
r4271 r5085 1 [aliases] 2 # A handy alias to make a release to pypi 3 release = egg_info -RDb "" sdist bdist_egg register upload 4 # A handy alias to run tests with a covergae report 5 cover = nosetests --with-coverage 6 1 7 [egg_info] 2 8 tag_build = dev … … 7 13 verbosity=2 8 14 detailed-errors=1 15 # Enable with-coverage manually in the CLI args to see coverage results 16 with-coverage=False 17 cover-package=tg 9 18 #with-doctest=True 10 19 attr=!broken trunk/setup.py
r5076 r5085 3 3 execfile(os.path.join(here, 'tg', 'release.py')) 4 4 from setuptools import find_packages, setup 5 6 test_requirements = ["nose", "TurboKid", "TurboJson", "coverage"] 5 7 6 8 setup( … … 29 31 ], 30 32 extras_require={ 31 'core-testing':["nose", "TurboKid", "TurboJson"] 33 #XXX: Perhaps this 'core-testing' extras_require can be removed 34 # since tests_require takes care of that as long as TG is tested 35 # with 'python setup.py test' (which we should IMHO so setuptools 36 # can take care of these details for us) 37 'core-testing':test_requirements, 32 38 }, 39 test_suite='nose.collector', 40 tests_require = test_requirements, 33 41 entry_points=''' 34 42 [paste.global_paster_command]