LibRay/setup.py

36 lines
803 B
Python
Raw Permalink Normal View History

#!/usr/bin/env python3
# -*- coding: utf8 -*-
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name="libray",
2026-05-18 16:31:58 +02:00
version="0.0.10",
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'],
2026-05-19 17:41:17 +02:00
entry_points={
'console_scripts': [
'libray=libray.libray:main',
],
},
2018-07-07 11:12:05 +02:00
install_requires=[
2026-05-18 16:31:58 +02:00
'tqdm~=4.66.2',
'pycryptodome~=3.20.0',
'requests~=2.31.0',
'beautifulsoup4~=4.12.3',
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']},
)