2018-07-07 00:38:10 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
# -*- coding: utf8 -*-
|
|
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name="libray",
|
2020-08-03 11:25:03 +02:00
|
|
|
version="0.0.3",
|
2018-07-07 00:38:10 +02:00
|
|
|
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'],
|
2018-07-07 11:12:05 +02:00
|
|
|
install_requires=[
|
2019-07-07 21:18:34 +02:00
|
|
|
'tqdm==4.32.2',
|
2019-05-16 10:37:28 +02:00
|
|
|
'pycrypto==2.6.1',
|
2019-07-07 21:18:34 +02:00
|
|
|
'requests==2.22.0',
|
|
|
|
|
'beautifulsoup4==4.7.1',
|
2018-07-07 11:12:05 +02:00
|
|
|
],
|
2019-07-07 21:18:34 +02:00
|
|
|
)
|