mirror of
https://gitea.com/bipinkrish/DeGourou.git
synced 2024-11-17 10:30:22 +00:00
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='DeGourou',
|
||
|
version='1.3.8',
|
||
|
description='Automate the process of getting decrypted ebook from InternetArchive without the need for Adobe Digital Editions and Calibre.',
|
||
|
url='https://gitea.com/bipinkrish/DeGourou',
|
||
|
author='Bipin krishna',
|
||
|
license='GPL3',
|
||
|
packages=['DeGourou',"DeGourou/setup","DeGourou/decrypt"],
|
||
|
install_requires=['pycryptodomex>=3.17',
|
||
|
'cryptography>=41.0.1',
|
||
|
'lxml>=4.9.2',
|
||
|
'requests>=2.31.0',
|
||
|
'charset-normalizer>=3.1.0'
|
||
|
],
|
||
|
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'degourou = DeGourou.DeGourou:main'
|
||
|
]
|
||
|
},
|
||
|
|
||
|
classifiers=[
|
||
|
'Development Status :: 5 - Production/Stable',
|
||
|
'Intended Audience :: Science/Research',
|
||
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
||
|
'Operating System :: MacOS',
|
||
|
'Operating System :: Microsoft :: Windows',
|
||
|
'Operating System :: POSIX :: Linux',
|
||
|
'Programming Language :: Python :: 3.6',
|
||
|
'Programming Language :: Python :: 3.7',
|
||
|
'Programming Language :: Python :: 3.8',
|
||
|
'Programming Language :: Python :: 3.9',
|
||
|
],
|
||
|
)
|