setup.py 790 B

12345678910111213141516171819202122232425262728293031323334
  1. #!/usr/bin/env python3
  2. # -*- coding: utf8 -*-
  3. from setuptools import setup
  4. with open('README.md') as f:
  5. long_description = f.read()
  6. setup(
  7. name="libray",
  8. version="0.0.10",
  9. description='A Libre (FLOSS) Python application for unencrypting, extracting, repackaging, and encrypting PS3 ISOs',
  10. long_description=long_description,
  11. long_description_content_type='text/markdown',
  12. author="Nichlas Severinsen",
  13. author_email="ns@nsz.no",
  14. url="https://notabug.org/necklace/libray",
  15. packages=['libray'],
  16. scripts=['libray/libray'],
  17. install_requires=[
  18. 'tqdm~=4.66.2',
  19. 'pycryptodome~=3.20.0',
  20. 'requests~=2.31.0',
  21. 'beautifulsoup4~=4.12.3',
  22. 'html5lib~=1.1',
  23. 'setuptools~=69.1.1',
  24. ],
  25. include_package_data=True,
  26. package_data={'': ['data/keys.db']},
  27. )