12345678910111213141516 |
- #!/usr/bin/env python
- from distutils.core import setup
- setup(
- name="rollbot",
- version="4.0.0",
- description="Rollbot framework library",
- author="Kirk Trombley",
- author_email="ktrom3894@gmail.com",
- packages=["rollbot"],
- install_requires=[
- "aiosqlite",
- "aiohttp",
- ],
- )
|