Initial commit

This commit is contained in:
BarsTiger
2023-06-21 16:21:51 +03:00
commit d5948233c7
5 changed files with 33 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
/.idea/
/venv/
/tests/
/build/
/dist/
__pycache__
poetry.lock

View File

@@ -0,0 +1,2 @@
def main():
print('DRAGONION-SERVER')

View File

@@ -0,0 +1,5 @@
from DragonionServer import main
if __name__ == '__main__':
main()

2
README.md Normal file
View File

@@ -0,0 +1,2 @@
# DragonionServer
Websocket chat server on-top of onion network for [dragonion](https://github.com/BarsTiger/dragonion)

16
pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[tool.poetry]
name = "DragonionServer"
version = "0.1.0"
description = ""
authors = ["BarsTiger <zxcbarstiger@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.scripts]
dragonion-server = "DragonionServer:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"