-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 1008 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
[tool.poetry]
name = "bgpy"
version = "0.3.1"
description = "Running local or remote Python servers in the background and establish stream socket-based communication with clients."
maintainers = ["Merlin Unterfinger <[email protected]>"]
authors = ["Merlin Unterfinger <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://pypi.org/project/bgpy/"
documentation = "https://bgpy.readthedocs.io/en/latest/"
repository = "https://github.com/munterfi/bgpy"
[tool.poetry.scripts]
bgpy = "bgpy.cli:main"
[tool.poetry.dependencies]
python = "^3.6"
typer = ">=0.3.2,<0.11.0"
importlib-metadata = { version = ">=3.4,<5.0", python = "<3.8" }
[tool.poetry.dev-dependencies]
black = "^20.8b1"
codecov = "^2.1.13"
flake8 = "^3.9.2"
mypy = "^0.971"
pydata-sphinx-theme = "^0.7.2"
pytest = "^7.0.1"
pytest-cov = "^4.0.0"
Sphinx = "^5.3.0"
tomlkit = "^0.11.6"
[mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"