setup.cfg 1.5 KB

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