2
0

setup.cfg 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.6
  17. Programming Language :: Python :: 3.7
  18. Programming Language :: Python :: 3.8
  19. Programming Language :: Python :: 3.9
  20. Programming Language :: Python :: 3.10
  21. Programming Language :: Python :: 3.11
  22. Programming Language :: Python :: Implementation :: CPython
  23. Programming Language :: Python :: Implementation :: PyPy
  24. Operating System :: POSIX
  25. Operating System :: Microsoft :: Windows
  26. Topic :: Software Development :: Version Control
  27. project_urls =
  28. Repository=https://www.dulwich.io/code/
  29. GitHub=https://github.com/dulwich/dulwich
  30. Bug Tracker=https://github.com/dulwich/dulwich/issues
  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.6
  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. zip_safe = False
  51. scripts =
  52. bin/dul-receive-pack
  53. bin/dul-upload-pack