diff options
author | kali <kali@leap.se> | 2012-08-13 18:47:12 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-08-13 18:47:12 +0900 |
commit | f1e23b8641c7c0904e6c3d13d033293c069834c3 (patch) | |
tree | 98a4e5a904235649c106d797f585adb6864e0f34 | |
parent | 8bbab1e3a7f1333040239129b4cb4245cc30d0c0 (diff) |
several pending todo on setup
-rwxr-xr-x | setup.py | 25 |
1 files changed, 20 insertions, 5 deletions
@@ -33,9 +33,25 @@ setup( # XXX FIXME DEPS # deps: pyqt - # test_deps: nose, ... + # build_deps: pyqt-utils - test_suite = 'nose.collector', + # XXX fixme move resource reloading + # to this setup script. + + # XXX should implement a parse_requirements + # and get them from the pip reqs. workaround needed + # for argparse and <=2.6 + install_requires=[ + # -*- Extra requirements: -*- + ], + test_suite='nose.collector', + + # XXX change to parse_test_requirements and + # get them from pip reqs. + test_requires=[ + "nose", + "mock"], + keywords='leap, client, qt, encryption', author='leap project', author_email='info@leap.se', @@ -46,9 +62,8 @@ setup( exclude=['ez_setup', 'setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, - install_requires=[ - # -*- Extra requirements: -*- - ], + + # XXX platform switch data_files=[ ("share/man/man1", ["docs/leap.1"]), |