diff --git a/pronotepy/__init__.py b/pronotepy/__init__.py index d46798a..0ef8720 100644 --- a/pronotepy/__init__.py +++ b/pronotepy/__init__.py @@ -6,7 +6,7 @@ __author__ = "bain, Xiloe" __license__ = "MIT" __copyright__ = "Copyright (c) 2020-2022 bain, Xiloe" -__version__ = "2.7.0" +__version__ = "2.8.0" from .dataClasses import * from .clients import * diff --git a/setup.py b/setup.py index f99346a..3a5ec59 100644 --- a/setup.py +++ b/setup.py @@ -5,8 +5,9 @@ setuptools.setup( name="pronotepy", - version="2.7.0", + version="2.8.0", description='A wrapper for the pronote "API"', + long_description=long_description, url="https://www.github.com/bain3/pronotepy", author="bain", license="MIT", @@ -24,5 +25,5 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - package_data={"pronotepy": ["py.typed"]} + package_data={"pronotepy": ["py.typed"]}, )