mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
[5.1.3]
This commit is contained in:
parent
cda861b23b
commit
7eb4a1e48e
2 changed files with 35 additions and 3 deletions
36
README.md
36
README.md
|
@ -6,14 +6,46 @@ A multipurpose bot framework and webserver
|
|||
|
||||
`royalnet` is a Python framework that allows you to create interconnected modular chat bots accessible through multiple interfaces (such as Telegram or Discord), and also modular websites that can be connected with the bots.
|
||||
|
||||
### Supported bot platforms
|
||||
### Supported bot platforms ("serfs")
|
||||
|
||||
- [Telegram](https://core.telegram.org/bots)
|
||||
- [Discord](https://discordapp.com/developers/docs/)
|
||||
|
||||
## Installing
|
||||
|
||||
Installing `royalnet` is a bit messy right now; please wait for the release of `5.1`!
|
||||
To install all `royalnet` modules, run:
|
||||
|
||||
```
|
||||
royalnet[telegram,discord,alchemy_easy,bard,constellation,sentry,herald,coloredlogs]
|
||||
```
|
||||
|
||||
> You will soon be able to install only the modules you need instead of the full package, but the feature isn't ready yet...
|
||||
|
||||
## Developing `royalnet`
|
||||
|
||||
To develop `royalnet`, you need to have [Poetry](https://poetry.eustace.io/) installed on your PC.
|
||||
|
||||
After you've installed Poetry, clone the git repo with the command:
|
||||
|
||||
```
|
||||
git clone https://github.com/Steffo99/royalnet
|
||||
```
|
||||
|
||||
Then enter the new directory:
|
||||
|
||||
```
|
||||
cd royalnet
|
||||
```
|
||||
|
||||
And finally install all dependencies and the package:
|
||||
|
||||
```
|
||||
poetry install -E telegram -E discord -E alchemy_easy -E bard -E constellation -E sentry -E herald -E coloredlogs
|
||||
```
|
||||
|
||||
## Developing `royalnet` packages
|
||||
|
||||
> TODO
|
||||
|
||||
## Documentation
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[tool.poetry]
|
||||
name = "royalnet"
|
||||
version = "5.1.2"
|
||||
version = "5.1.3"
|
||||
description = "A multipurpose bot and web framework"
|
||||
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
|
||||
license = "AGPL-3.0+"
|
||||
|
|
Loading…
Reference in a new issue