setup.py 316 B

12345678910111213141516
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. setup(
  4. name="rollbot",
  5. version="4.0.0",
  6. description="Rollbot framework library",
  7. author="Kirk Trombley",
  8. author_email="ktrom3894@gmail.com",
  9. packages=["rollbot"],
  10. install_requires=[
  11. "aiosqlite",
  12. "aiohttp",
  13. ],
  14. )