setup.py 382 B

1234567891011121314151617181920
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. setup(
  4. name="commands",
  5. version="1.0.0",
  6. description="Rollbot commands library",
  7. author="Kirk Trombley",
  8. author_email="ktrom3894@gmail.com",
  9. packages=["commands"],
  10. install_requires=[
  11. "rollbot",
  12. "dice",
  13. "bs4",
  14. "gtts",
  15. "pillow",
  16. "sudoku-py",
  17. ],
  18. )