setup.cfg 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. [metadata]
  2. url = https://github.com/datalad/datalad-gooey
  3. author = The DataLad Team and Contributors
  4. author_email = team@datalad.org
  5. description = A simple GUI for DataLad
  6. long_description = file:README.md
  7. long_description_content_type = text/markdown; charset=UTF-8
  8. license = MIT
  9. classifiers =
  10. Programming Language :: Python
  11. License :: OSI Approved :: BSD License
  12. Programming Language :: Python :: 3
  13. [options]
  14. python_requires = >= 3.7
  15. install_requires =
  16. datalad_next >= 0.6.0
  17. pyside6
  18. outdated
  19. pyqtdarktheme
  20. packages = find_namespace:
  21. include_package_data = True
  22. [options.packages.find]
  23. include = datalad_gooey*
  24. [options.extras_require]
  25. # this matches the name used by -core and what is expected by some CI setups
  26. devel =
  27. pytest
  28. pytest-cov
  29. pytest-qt
  30. pytest-xvfb
  31. coverage
  32. [options.entry_points]
  33. # 'datalad.extensions' is THE entrypoint inspected by the datalad API builders
  34. datalad.extensions =
  35. # the label in front of '=' is the command suite label
  36. # the entrypoint can point to any symbol of any name, as long it is
  37. # valid datalad interface specification (see demo in this extensions)
  38. gooey = datalad_gooey:command_suite
  39. datalad.gooey.suites =
  40. gooey-simplified = datalad_gooey.simplified_api:gooey_suite
  41. gooey-complete = datalad_gooey.complete_api:gooey_suite
  42. # install the GUI starter as a direct entrypoint to avoid the datalad CLI
  43. # overhead
  44. gui_scripts =
  45. datalad-gooey = datalad_gooey.app:main
  46. console_scripts =
  47. datalad-gooey-askpass = datalad_gooey.askpass:GooeyAskPass.__call__
  48. [versioneer]
  49. # See the docstring in versioneer.py for instructions. Note that you must
  50. # re-run 'versioneer.py setup' after changing this section, and commit the
  51. # resulting files.
  52. VCS = git
  53. style = pep440
  54. versionfile_source = datalad_gooey/_version.py
  55. versionfile_build = datalad_gooey/_version.py
  56. tag_prefix =
  57. parentdir_prefix =
  58. [coverage:report]
  59. show_missing = True
  60. omit =
  61. # versioneer code
  62. datalad_gooey/_version.py