LibRay/setup.py

32 lines
740 B
Python
Raw 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",
version="0.0.8",
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'],
2018-07-07 11:12:05 +02:00
install_requires=[
'tqdm==4.32.2',
2020-08-03 11:33:00 +02:00
'pycryptodome==3.9.8',
'requests==2.22.0',
'beautifulsoup4==4.7.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']},
)