setup.py 519 B

12345678910111213141516171819202122
  1. #!/usr/bin/env python3
  2. # -*- coding: utf8 -*-
  3. from setuptools import setup
  4. setup(
  5. name="libray",
  6. version="0.0.2",
  7. description='A Libre (FLOSS) Python application for unencrypting, extracting, repackaging, and encrypting PS3 ISOs',
  8. author="Nichlas Severinsen",
  9. author_email="ns@nsz.no",
  10. url="https://notabug.org/necklace/libray",
  11. packages=['libray'],
  12. scripts=['libray/libray'],
  13. install_requires=[
  14. 'tqdm==4.32.2',
  15. 'pycrypto==2.6.1',
  16. 'requests==2.22.0',
  17. 'beautifulsoup4==4.7.1',
  18. ],
  19. )