mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
Update to 5.9
This commit is contained in:
parent
87540e6d9e
commit
b4e24f40aa
5 changed files with 446 additions and 337 deletions
|
@ -1,21 +0,0 @@
|
||||||
# This file should not need to be changed.
|
|
||||||
|
|
||||||
from . import commands, tables, stars, events
|
|
||||||
from .commands import available_commands
|
|
||||||
from .tables import available_tables
|
|
||||||
from .stars import available_page_stars, available_exception_stars
|
|
||||||
from .events import available_events
|
|
||||||
|
|
||||||
from .version import semantic as __version__
|
|
||||||
|
|
||||||
__all__ = [
|
|
||||||
"commands",
|
|
||||||
"tables",
|
|
||||||
"stars",
|
|
||||||
"events",
|
|
||||||
"available_commands",
|
|
||||||
"available_tables",
|
|
||||||
"available_page_stars",
|
|
||||||
"available_exception_stars",
|
|
||||||
"available_events",
|
|
||||||
]
|
|
|
@ -4,10 +4,5 @@
|
||||||
available_page_stars = [
|
available_page_stars = [
|
||||||
]
|
]
|
||||||
|
|
||||||
# Enter the ExceptionStars of your Pack here!
|
|
||||||
# TODO: or to the list here if it is an ExceptionStar!
|
|
||||||
available_exception_stars = [
|
|
||||||
]
|
|
||||||
|
|
||||||
# Don't change this, it should automatically generate __all__
|
# Don't change this, it should automatically generate __all__
|
||||||
__all__ = [command.__name__ for command in [*available_page_stars, *available_exception_stars]]
|
__all__ = [command.__name__ for command in available_page_stars]
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
semantic = "0.3.0"
|
semantic = "0.3.1"
|
||||||
|
|
747
poetry.lock
generated
747
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,9 +1,9 @@
|
||||||
# Remember to run `poetry update` after you edit this file!
|
# Remember to run `poetry update` after you edit this file!
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "markovpack"
|
name = "markov"
|
||||||
description = "A Royalnet pack to have fun with Markovify."
|
description = "A Royalnet pack to have fun with Markovify."
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
|
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
|
||||||
license = "AGPL-3.0+"
|
license = "AGPL-3.0+"
|
||||||
homepage = "https://github.com/Steffo99/markovpack"
|
homepage = "https://github.com/Steffo99/markovpack"
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
markovify = "^0.8.0"
|
markovify = "^0.8.0"
|
||||||
|
|
||||||
[tool.poetry.dependencies.royalnet]
|
[tool.poetry.dependencies.royalnet]
|
||||||
version = "^5.2.4"
|
version = "^5.9.2"
|
||||||
# Maybe... there is a way to make these selectable?
|
# Maybe... there is a way to make these selectable?
|
||||||
extras = [
|
extras = [
|
||||||
"telegram",
|
"telegram",
|
||||||
|
|
Loading…
Reference in a new issue