A VCS repository archival tool
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

27 行
760 B

  1. import setuptools
  2. setuptools.setup(
  3. name = 'codearchiver',
  4. description = 'A VCS repository archival tool',
  5. author = 'JustAnotherArchivist',
  6. url = 'https://git.kiska.pw/JustAnotherArchivist/codearchiver',
  7. classifiers = [
  8. 'Development Status :: 3 - Alpha',
  9. 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
  10. 'Programming Language :: Python :: 3.9',
  11. 'Programming Language :: Python :: 3.10',
  12. 'Programming Language :: Python :: 3.11',
  13. ],
  14. packages = ['codearchiver', 'codearchiver.modules'],
  15. python_requires = '~=3.9',
  16. setup_requires = ['setuptools_scm'],
  17. use_scm_version = True,
  18. install_requires = ['requests[socks]'],
  19. entry_points = {
  20. 'console_scripts': [
  21. 'codearchiver = codearchiver.cli:main',
  22. ],
  23. },
  24. )