setup.py 767 B

123456789101112131415161718192021
  1. from setuptools import find_packages, setup
  2. setup(
  3. name="crau",
  4. description="Easy-to-use Web archiver",
  5. version="0.2.1",
  6. author="Álvaro Justen",
  7. author_email="alvarojusten@gmail.com",
  8. url="https://github.com/turicas/crau/",
  9. install_requires=["click", "pywb", "scrapy", "tqdm", "warcio"],
  10. packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
  11. keywords="web crawling scraping archiving",
  12. entry_points={"console_scripts": ["crau = crau.cli:cli"]},
  13. classifiers=[
  14. "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
  15. "Natural Language :: English",
  16. "Operating System :: OS Independent",
  17. "Programming Language :: Python :: 3.7",
  18. ],
  19. )