diff --git a/setup.py b/setup.py index 7cc81e4..2db8734 100644 --- a/setup.py +++ b/setup.py @@ -14,9 +14,9 @@ version=vdf.__version__, description='Library for working with Valve\'s VDF text format', long_description=long_description, - url='https://github.com/ValvePython/vdf', - author='Rossen Georgiev', - author_email='rossen@rgp.io', + url='https://github.com/solsticegamestudios/vdf', + author='Rossen Georgiev / Solstice Game Studios', + author_email='py-vdf@solsticegamestudios.com', license='MIT', python_requires=">=3.6", classifiers=[ @@ -30,6 +30,9 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: Implementation :: PyPy', ], keywords='valve keyvalue vdf tf2 dota2 csgo', diff --git a/vdf/__init__.py b/vdf/__init__.py index 66428c6..f80fd13 100644 --- a/vdf/__init__.py +++ b/vdf/__init__.py @@ -1,8 +1,8 @@ """ Module for deserializing/serializing to and from VDF """ -__version__ = "3.5" -__author__ = "Rossen Georgiev" +__version__ = "4.0" +__author__ = "Rossen Georgiev / Solstice Game Studios" import re import struct