diff --git a/docs/conf.py b/docs/conf.py index 4adae2e..71b27c3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = 'Joshua Fehler' # The full version, including alpha/beta/rc tags -release = 'v0.0.6' +release = 'v0.0.7' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 112bd95..3f6b797 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup -def read(filename:str): +def read(filename: str): path = os.path.join(os.path.dirname(__file__), filename) with open(path, 'r') as f: return f.read() @@ -11,7 +11,7 @@ def read(filename:str): setup( name="inori", - version="0.0.6", + version="0.0.7", description="The Universal API Client Constructor.", long_description=read('README.rst'), author="Joshua Fehler", @@ -26,6 +26,7 @@ def read(filename:str): "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", "Development Status :: 4 - Beta",