setup.cfg 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. # install the GUI starter as a direct entrypoint to avoid the datalad CLI
  40. # overhead
  41. gui_scripts =
  42. datalad-gooey = datalad_gooey.app:main
  43. console_scripts =
  44. datalad-gooey-askpass = datalad_gooey.askpass:GooeyAskPass.__call__
  45. [versioneer]
  46. # See the docstring in versioneer.py for instructions. Note that you must
  47. # re-run 'versioneer.py setup' after changing this section, and commit the
  48. # resulting files.
  49. VCS = git
  50. style = pep440
  51. versionfile_source = datalad_gooey/_version.py
  52. versionfile_build = datalad_gooey/_version.py
  53. tag_prefix =
  54. parentdir_prefix =
  55. [coverage:report]
  56. show_missing = True
  57. omit =
  58. # versioneer code
  59. datalad_gooey/_version.py