12345678910111213 |
- #!/usr/bin/env python
- from distutils.core import setup
- setup(name='polyglot',
- version='0.0.1',
- description='Unified, libre interface to learning management systems',
- author='Alyssa Rosenzweig',
- author_email='alyssa@rosenzweig.io',
- url='https://notabug.org/polyglot/polyglot',
- packages=['polyglot'],
- requires=['requests (<3.0, >2.0)', 'lxml (<5.0, >4.0)'])
|