From 94f9cb8495f31cd2916a39bf2670d83567fc7553 Mon Sep 17 00:00:00 2001 From: biqqles Date: Sat, 14 Jan 2023 12:45:23 +0000 Subject: [PATCH] Build: update setup.py for 1.0.1 --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 83a931f..51cf883 100755 --- a/setup.py +++ b/setup.py @@ -2,10 +2,10 @@ setup( name='dataclassy', - version='0.11.1', + version='1.0.1', author='biqqles', - author_email='biqqles@protonmail.com', + author_email='biqqles@proton.me', url='https://github.com/biqqles/dataclassy', description='A fast and flexible reimplementation of data classes', @@ -20,9 +20,10 @@ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', 'Operating System :: OS Independent', - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', + 'Typing :: Typed', ], python_requires='>=3.6', )