1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Get version from init

This commit is contained in:
Steffo 2019-05-05 20:52:53 +02:00
parent 7fdf50a5a5
commit 2723157796
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,5 @@
from . import audio, bots, commands, database, network, utils, error from . import audio, bots, commands, database, network, utils, error
version = "5.0a4"
__all__ = ["audio", "bots", "commands", "database", "network", "utils", "error"] __all__ = ["audio", "bots", "commands", "database", "network", "utils", "error"]

View file

@ -1,3 +1,4 @@
import royalnet
import setuptools import setuptools
with open("README.md", "r") as f: with open("README.md", "r") as f:
@ -5,7 +6,7 @@ with open("README.md", "r") as f:
setuptools.setup( setuptools.setup(
name="royalnet", name="royalnet",
version="5.0a3", version=royalnet.version,
author="Stefano Pigozzi", author="Stefano Pigozzi",
author_email="ste.pigozzi@gmail.com", author_email="ste.pigozzi@gmail.com",
description="The great bot network of the Royal Games community", description="The great bot network of the Royal Games community",