1234567891011121314151617181920 |
- #!/usr/bin/env python
- from distutils.core import setup
- setup(
- name="commands",
- version="1.0.0",
- description="Rollbot commands library",
- author="Kirk Trombley",
- author_email="ktrom3894@gmail.com",
- packages=["commands"],
- install_requires=[
- "rollbot",
- "dice",
- "bs4",
- "gtts",
- "pillow",
- "sudoku-py",
- ],
- )
|