Release v3.1.0

This commit is contained in:
hyugogirubato
2023-06-04 15:57:30 +02:00
parent ffca3239cf
commit 1f1433a3c4
26 changed files with 533 additions and 586 deletions
+37 -26
View File
@@ -1,30 +1,41 @@
"""Setup module"""
from setuptools import setup
with open('README.md', 'r') as fh:
LONG_DESCRIPTION = fh.read()
from setuptools import setup, find_packages
setup(
name='pycbzhelper',
version='3.0.1',
description='Python library to create a cbz file with metadata.',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/hyugogirubato/pycbzhelper',
author='hyugogirubato',
author_email='hyugogirubato@gmail.com',
license='GNU GPLv3',
packages=['pycbzhelper'],
install_requires=['json2xml', 'langcodes', 'pillow'],
name="pycbzhelper",
version="3.1.0",
author="hyugogirubato",
author_email="hyugogirubato@gmail.com",
description="Python library for creating CBZ files with metadata.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/hyugogirubato/pycbzhelper",
packages=find_packages(),
license="GPL-3.0-only",
keywords=[
"metadata",
"manga",
"comics",
"ebooks",
"cbz"
],
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Utilities'
]
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities"
],
install_requires=[
"requests",
"json2xml",
"langcodes",
"Pillow"
],
python_requires=">=3.7"
)