A framework for quick web archiving
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

24 satır
605 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. ],
  12. packages = ['qwarc'],
  13. setup_requires = ['setuptools_scm'],
  14. use_scm_version = True,
  15. install_requires = ['aiohttp==2.3.10', 'warcio', 'yarl'],
  16. entry_points = {
  17. 'console_scripts': [
  18. 'qwarc = qwarc.cli:main',
  19. ],
  20. },
  21. )