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.

setup.py 648 B

il y a 5 ans
il y a 5 ans
il y a 5 ans
123456789101112131415161718192021222324
  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. ],
  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. )