setup.py 388 B

1234567891011121314151617
  1. #!/usr/bin/env python3
  2. # -*- coding: utf8 -*-
  3. from setuptools import setup
  4. setup(
  5. name='liberate',
  6. version='0.1.9',
  7. description='Video/Audio/Url liberation (to .ogg)',
  8. author='Nichlas Severinsen',
  9. author_email='ns@nsz.no',
  10. url='https://notabug.org/necklace/liberate',
  11. packages=['liberate'],
  12. scripts=['liberate/liberate'],
  13. install_requires=["youtube_dl", "colorama"]
  14. )