LibRay/setup.py
Nichlas Severinsen 82bc798677 Reworking identification
- PARAM.SFO reader (sfo.py)
- Search for param first then use title there to identify
- long_description (setup.py)
- Multiman styling by default
- Don't check crc32 as it is very slow
2021-06-06 23:09:33 +02:00

31 lines
740 B
Python
Executable file

#!/usr/bin/env python3
# -*- coding: utf8 -*-
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name="libray",
version="0.0.7",
description='A Libre (FLOSS) Python application for unencrypting, extracting, repackaging, and encrypting PS3 ISOs',
long_description=long_description,
long_description_content_type='text/markdown',
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']},
)