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.

26 lines
730 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.6',
  11. 'Programming Language :: Python :: 3.7',
  12. 'Programming Language :: Python :: 3.8',
  13. ],
  14. packages = ['codearchiver', 'codearchiver.modules'],
  15. setup_requires = ['setuptools_scm'],
  16. use_scm_version = True,
  17. install_requires = ['requests[socks]'],
  18. entry_points = {
  19. 'console_scripts': [
  20. 'codearchiver = codearchiver.cli:main',
  21. ],
  22. },
  23. )