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