- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
Latest commit
20 lines (16 loc) · 431 Bytes
/
Copy pathpyproject.toml
File metadata and controls
20 lines (16 loc) · 431 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tool.poetry]
name = "subpython"
version = "0.1.0"
description = "Use python process as module"
authors = ["Dalteo Craft <dalteo@dalteocraft.com>"]
[tool.poetry.dependencies]
python = ">=3.6"
pyzmq = "^20.0.0"
tornado = "^6.1"
[tool.poetry.dev-dependencies]
pytest = "^6.2.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
subpython = "subpython.__main__:main"