2018-07-07 00:38:10 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
# -*- coding: utf8 -*-
|
|
|
|
|
|
2021-06-06 23:09:33 +02:00
|
|
|
|
2018-07-07 00:38:10 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
2021-06-06 23:09:33 +02:00
|
|
|
|
|
|
|
|
with open('README.md') as f:
|
|
|
|
|
long_description = f.read()
|
|
|
|
|
|
|
|
|
|
|
2018-07-07 00:38:10 +02:00
|
|
|
setup(
|
|
|
|
|
name="libray",
|
2021-11-27 22:22:19 +01:00
|
|
|
version="0.0.8",
|
2018-07-07 00:38:10 +02:00
|
|
|
description='A Libre (FLOSS) Python application for unencrypting, extracting, repackaging, and encrypting PS3 ISOs',
|
2021-06-06 23:09:33 +02:00
|
|
|
long_description=long_description,
|
|
|
|
|
long_description_content_type='text/markdown',
|
2018-07-07 00:38:10 +02:00
|
|
|
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=[
|
2022-02-19 00:17:45 +01:00
|
|
|
'tqdm~=4.62.3',
|
|
|
|
|
'pycryptodome~=3.14.1',
|
|
|
|
|
'requests~=2.27.1',
|
|
|
|
|
'beautifulsoup4~=4.10.0',
|
|
|
|
|
'html5lib~=1.1'
|
2018-07-07 11:12:05 +02:00
|
|
|
],
|
2021-06-05 22:03:31 +02:00
|
|
|
include_package_data=True,
|
|
|
|
|
package_data={'': ['data/keys.db']},
|
2019-07-07 21:18:34 +02:00
|
|
|
)
|