Initial commit
This commit is contained in:
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/.idea/
|
||||
/venv/
|
||||
/tests/
|
||||
/build/
|
||||
/dist/
|
||||
__pycache__
|
||||
|
||||
poetry.lock
|
||||
2
DragonionServer/__init__.py
Normal file
2
DragonionServer/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
def main():
|
||||
print('DRAGONION-SERVER')
|
||||
5
DragonionServer/__main__.py
Normal file
5
DragonionServer/__main__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from DragonionServer import main
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
2
README.md
Normal file
2
README.md
Normal 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
16
pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user