Switched versioning to semantic

This commit is contained in:
Profitroll 2023-08-06 12:43:41 +02:00
parent 3273b86b75
commit 7c756d7065
Signed by: profitroll
GPG Key ID: FA35CAB49DACD3B2
4 changed files with 4 additions and 14 deletions

View File

@ -1,9 +1,6 @@
__name__ = "libbot"
__version__ = "1.9"
__version__ = "0.2.0"
__license__ = "GPL3"
__author__ = "Profitroll"
from . import i18n, pyrogram, sync
from .__main__ import *
from . import sync
from . import i18n
from . import pyrogram

View File

@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
[project]
name = "libbot"
version = "1.9"
version = "0.2.0"
authors = [{ name = "Profitroll" }]
description = "Universal bot library with functions needed for basic Discord/Telegram bot development."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "GPL3" }
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",

View File

@ -1,3 +0,0 @@
[metadata]
description_file=README.md
license_files=LICENSE

View File

@ -1,4 +0,0 @@
from setuptools import setup
if __name__ == "__main__":
setup()