A VCS repository archival tool
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

33 Zeilen
840 B

  1. [build-system]
  2. requires = ['setuptools>=61', 'setuptools_scm>=6.2']
  3. build-backend = 'setuptools.build_meta'
  4. [tool.setuptools]
  5. packages = ['codearchiver', 'codearchiver.modules']
  6. [tool.setuptools_scm]
  7. [project]
  8. name = 'codearchiver'
  9. description = 'A VCS repository archival tool'
  10. readme = 'README.md'
  11. authors = [{name = 'JustAnotherArchivist'}]
  12. classifiers = [
  13. 'Development Status :: 3 - Alpha',
  14. 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
  15. 'Programming Language :: Python :: 3.9',
  16. 'Programming Language :: Python :: 3.10',
  17. 'Programming Language :: Python :: 3.11',
  18. ]
  19. dependencies = [
  20. 'requests[socks]',
  21. ]
  22. requires-python = '~=3.9'
  23. dynamic = ['version']
  24. [project.urls]
  25. repository = "https://gitea.arpa.li/JustAnotherArchivist/codearchiver"
  26. [project.scripts]
  27. codearchiver = 'codearchiver.cli:main'