diff --git a/.gitignore b/.gitignore index 5198972..b40db82 100644 --- a/.gitignore +++ b/.gitignore @@ -122,3 +122,6 @@ dmypy.json # Pyre type checker .pyre/ + +#pycharm +/.idea diff --git a/comicapi/__init__.py b/comicapi/__init__.py index 4f014bc..819eabc 100644 --- a/comicapi/__init__.py +++ b/comicapi/__init__.py @@ -1,3 +1,3 @@ __author__ = 'dromanin' -__version__ = '2.1.2' +__version__ = '2.1.3' diff --git a/setup.py b/setup.py index 8c84aad..0f55e9f 100644 --- a/setup.py +++ b/setup.py @@ -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", + ] )