-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
38 lines (35 loc) · 958 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tool.poetry]
name = "nuttssh"
version = "0.3"
description = "SSH switchboard for internally patching forwarded ports"
authors = ["Matthijs Kooijman <matthijs@stdin.nl>"]
license = "MIT"
readme = "README.md"
repository = "http://github.com/matthijskooijman/nuttssh"
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Environment :: No Input/Output (Daemon)",
"Framework :: AsyncIO",
"Topic :: Internet :: Proxy Servers",
"Topic :: System :: Networking",
]
[tool.poetry.dependencies]
python = "^3.6"
asyncssh = "^2.3"
[tool.poetry.dev-dependencies]
flake8 = "*"
flake8-per-file-ignores = "*"
flake8-bugbear = "*"
flake8-comprehensions = "*"
flake8-mutable = "*"
flake8-mypy = "*"
flake8-docstrings = "*"
flake8-print = "*"
flake8-tuple = "*"
flake8-commas = "*"
flake8-isort = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"