Update version and classifier information

This commit is contained in:
Ozzie Isaacs 2021-01-17 10:30:00 +01:00
parent 7aa91ea95e
commit 6798cd2a83
3 changed files with 11 additions and 3 deletions

3
.gitignore vendored
View File

@ -122,3 +122,6 @@ dmypy.json
# Pyre type checker
.pyre/
#pycharm
/.idea

View File

@ -1,3 +1,3 @@
__author__ = 'dromanin'
__version__ = '2.1.2'
__version__ = '2.1.3'

View File

@ -1,9 +1,10 @@
from setuptools import setup
setup(
name = 'comicapi',
version = '2.1.2',
version = '2.1.3',
description = 'Comic archive (cbr/cbz/cbt) and metadata utilities. Extracted from the comictagger project.',
author = 'Iris W',
maintainer = "@OzzieIsaacs",
packages = ['comicapi'],
install_requires = ['natsort>=3.5.2'],
extras_require = {
@ -11,5 +12,9 @@ setup(
},
python_requires = '>=2.7.0',
url = 'https://github.com/OzzieIsaacs/comicapi',
classifiers = ['License :: OSI Approved :: Apache Software License 2.0 (Apache-2.0)']
classifiers = [
"Programming Language :: Python :: 3",
'License :: OSI Approved :: Apache Software License',
"Operating System :: OS Independent",
]
)