23 lines
591 B
Python
Executable file
23 lines
591 B
Python
Executable file
#!/usr/bin/env python3
|
|
# -*- coding: utf8 -*-
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name="libray",
|
|
version="0.0.6",
|
|
description='A Libre (FLOSS) Python application for unencrypting, extracting, repackaging, and encrypting PS3 ISOs',
|
|
author="Nichlas Severinsen",
|
|
author_email="ns@nsz.no",
|
|
url="https://notabug.org/necklace/libray",
|
|
packages=['libray'],
|
|
scripts=['libray/libray'],
|
|
install_requires=[
|
|
'tqdm==4.32.2',
|
|
'pycryptodome==3.9.8',
|
|
'requests==2.22.0',
|
|
'beautifulsoup4==4.7.1',
|
|
],
|
|
include_package_data=True,
|
|
package_data={'': ['data/keys.db']},
|
|
)
|