setup.py 562 B

1234567891011121314151617181920212223242526
  1. from setuptools import setup
  2. deps = [
  3. "requests",
  4. "fake-useragent",
  5. "pyyaml",
  6. "websocket-client"
  7. ]
  8. setup(
  9. name='showroom',
  10. version='0.3.5-master',
  11. packages=['showroom'],
  12. license='MIT',
  13. long_description=open('README.md').read(),
  14. install_requires=deps,
  15. python_requires=">=3.6, <4",
  16. entry_points={
  17. "console_scripts": [
  18. "showroom=showroom.main:main",
  19. "archiver=showroom.archive.main:main",
  20. # TODO: merge concat into archiver
  21. "concat=concat",
  22. ]
  23. }
  24. )