DeGourou/setup.py

41 lines
1.4 KiB
Python
Raw Normal View History

2023-08-28 14:47:34 +00:00
from setuptools import setup
2023-08-28 15:35:08 +00:00
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
2023-08-28 14:47:34 +00:00
setup(
name='DeGourou',
2023-08-31 05:57:57 +00:00
version='1.3.9',
2023-08-28 14:47:34 +00:00
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',
2023-08-28 15:35:08 +00:00
long_description=long_description,
long_description_content_type='text/markdown',
2023-08-28 14:47:34 +00:00
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',
],
)