A framework for quick web archiving
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
688 B

  1. import setuptools
  2. setuptools.setup(
  3. name = 'qwarc',
  4. description = 'A framework for quick web archival',
  5. author = 'JustAnotherArchivist',
  6. url = 'https://github.com/JustAnotherArchivist/qwarc',
  7. classifiers = [
  8. 'Development Status :: 3 - Alpha',
  9. 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
  10. 'Programming Language :: Python :: 3.7',
  11. 'Programming Language :: Python :: 3.8',
  12. 'Operating System :: POSIX :: Linux',
  13. ],
  14. packages = ['qwarc'],
  15. setup_requires = ['setuptools_scm'],
  16. use_scm_version = True,
  17. install_requires = ['aiohttp==2.3.10', 'warcio', 'yarl'],
  18. entry_points = {
  19. 'console_scripts': [
  20. 'qwarc = qwarc.cli:main',
  21. ],
  22. },
  23. )