setup.cfg 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. packages = find_namespace:
  20. include_package_data = True
  21. [options.packages.find]
  22. include = datalad_gooey*
  23. [options.extras_require]
  24. # this matches the name used by -core and what is expected by some CI setups
  25. devel =
  26. pytest
  27. coverage
  28. [options.entry_points]
  29. # 'datalad.extensions' is THE entrypoint inspected by the datalad API builders
  30. datalad.extensions =
  31. # the label in front of '=' is the command suite label
  32. # the entrypoint can point to any symbol of any name, as long it is
  33. # valid datalad interface specification (see demo in this extensions)
  34. gooey = datalad_gooey:command_suite
  35. # install the GUI starter as a direct entrypoint to avoid the datalad CLI
  36. # overhead
  37. gui_scripts = datalad-gooey = datalad_gooey.app:main
  38. [versioneer]
  39. # See the docstring in versioneer.py for instructions. Note that you must
  40. # re-run 'versioneer.py setup' after changing this section, and commit the
  41. # resulting files.
  42. VCS = git
  43. style = pep440
  44. versionfile_source = datalad_gooey/_version.py
  45. versionfile_build = datalad_gooey/_version.py
  46. tag_prefix =
  47. parentdir_prefix =
  48. [coverage:report]
  49. show_missing = True
  50. omit =
  51. # versioneer code
  52. datalad_gooey/_version.py