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.

25 lines
648 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.6',
  11. 'Programming Language :: Python :: 3.7',
  12. ],
  13. packages = ['qwarc'],
  14. setup_requires = ['setuptools_scm'],
  15. use_scm_version = True,
  16. install_requires = ['aiohttp==2.3.10', 'warcio', 'yarl'],
  17. entry_points = {
  18. 'console_scripts': [
  19. 'qwarc = qwarc.cli:main',
  20. ],
  21. },
  22. )