A framework for quick web archiving
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 5 ans
il y a 5 ans
il y a 5 ans
12345678910111213141516171819202122232425
  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. )