A VCS repository archival tool
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
853 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. 'filelock',
  22. ]
  23. requires-python = '~=3.9'
  24. dynamic = ['version']
  25. [project.urls]
  26. repository = "https://gitea.arpa.li/JustAnotherArchivist/codearchiver"
  27. [project.scripts]
  28. codearchiver = 'codearchiver.cli:main'