setup.cfg 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. [mypy]
  2. ignore_missing_imports = True
  3. [metadata]
  4. name = dulwich
  5. version = attr:dulwich.__version__
  6. description = Python Git Library
  7. long_description = file:README.rst
  8. url = https://www.dulwich.io/
  9. author = Jelmer Vernooij
  10. author_email = jelmer@jelmer.uk
  11. license = Apachev2 or later or GPLv2
  12. keywords = vcs, git
  13. classifiers =
  14. Development Status :: 4 - Beta
  15. License :: OSI Approved :: Apache Software License
  16. Programming Language :: Python :: 3.7
  17. Programming Language :: Python :: 3.8
  18. Programming Language :: Python :: 3.9
  19. Programming Language :: Python :: 3.10
  20. Programming Language :: Python :: 3.11
  21. Programming Language :: Python :: Implementation :: CPython
  22. Programming Language :: Python :: Implementation :: PyPy
  23. Operating System :: POSIX
  24. Operating System :: Microsoft :: Windows
  25. Topic :: Software Development :: Version Control
  26. project_urls =
  27. Repository=https://www.dulwich.io/code/
  28. GitHub=https://github.com/dulwich/dulwich
  29. Bug Tracker=https://github.com/dulwich/dulwich/issues
  30. license_files = COPYING
  31. [options.extras_require]
  32. fastimport = fastimport
  33. https = urllib3>=1.24.1
  34. pgp = gpg
  35. paramiko = paramiko
  36. [options.entry_points]
  37. console_scripts =
  38. dulwich = dulwich.cli:main
  39. [options]
  40. python_requires = >=3.7
  41. packages =
  42. dulwich
  43. dulwich.cloud
  44. dulwich.tests
  45. dulwich.tests.compat
  46. dulwich.contrib
  47. include_package_data = True
  48. install_requires =
  49. urllib3>=1.25
  50. typing_extensions;python_version<="3.7"
  51. zip_safe = False
  52. scripts =
  53. bin/dul-receive-pack
  54. bin/dul-upload-pack
  55. [egg_info]
  56. tag_build =
  57. tag_date = 0