setup.cfg 1.7 KB

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