setup.py 475 B

12345678910111213
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. setup(name='polyglot',
  4. version='0.0.1',
  5. description='Unified, libre interface to learning management systems',
  6. author='Alyssa Rosenzweig',
  7. author_email='alyssa@rosenzweig.io',
  8. url='https://notabug.org/polyglot/polyglot',
  9. packages = ['polyglot', 'polyglot.backends', 'polyglot.authentication', 'polyglot.transformers'],
  10. requires=['requests (<3.0, >2.0)', 'lxml (<5.0, >4.0)'])