setup.cfg 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. aiohttp = aiohttp
  37. [options.entry_points]
  38. console_scripts =
  39. dulwich = dulwich.cli:main
  40. [options]
  41. python_requires = >=3.6
  42. packages =
  43. dulwich
  44. dulwich.cloud
  45. dulwich.tests
  46. dulwich.tests.compat
  47. dulwich.contrib
  48. include_package_data = True
  49. install_requires =
  50. urllib3>=1.25
  51. zip_safe = False
  52. scripts =
  53. bin/dul-receive-pack
  54. bin/dul-upload-pack