LibRay/setup.py

21 lines
518 B
Python
Raw Permalink Normal View History

#!/usr/bin/env python3
# -*- coding: utf8 -*-
from setuptools import setup
setup(
name="libray",
version="0.0.1",
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=[
2018-07-07 12:13:11 +02:00
'tqdm==4.23.4',
2019-05-16 10:37:28 +02:00
'pycrypto==2.6.1',
'requests==2.19.1',
2018-07-07 12:13:11 +02:00
'beautifulsoup4==4.6.0',
2018-07-07 11:12:05 +02:00
],
)