forked from Otoru/Genesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (37 loc) · 1.18 KB
/
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
39
40
41
[tool.poetry]
name = "genesis"
version = "0.3.5"
description = "Implementation of FreeSWITCH Event Socket protocol with asyncio"
authors = ["Vitor <[email protected]>"]
license = "MIT"
repository = "https://github.com/Otoru/Genesis"
readme = "README.md"
homepage = "https://github.com/Otoru/Genesis#readme"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Telecommunications Industry",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Communications :: Telephony",
"Topic :: Software Development",
]
exclude = ["tests"]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.0"
black = "^22.1.0"
pytest-asyncio = "^0.18.2"
pytest-cov = "^3.0.0"
tox = "^3.24.5"
mock = "^4.0.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Otoru/Genesis/issues"
"Source Code" = "https://github.com/Otoru/Genesis"