-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
73 lines (66 loc) · 2.09 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "appmap"
version = "1.3.0"
description = "Create AppMap files by recording a Python application."
readme = "README.md"
authors = [
"Alan Potter <alan@app.land>",
"Viraj Kanwade <viraj.kanwade@forgeahead.io>",
"Rafał Rzepecki <rafal@app.land>"
]
homepage = "https://github.com/applandinc/appmap-python"
license = "MIT"
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.1',
'Framework :: Flask',
'Framework :: Pytest',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Debuggers',
'Topic :: Software Development :: Documentation'
]
include = ['appmap.pth']
packages = [
{ include = "appmap" },
{ include = "appmap/wrapt/*.py", from="vendor/wrapt/src" }
]
[tool.poetry.dependencies]
# Please update the documentation if changing the supported python version
# https://github.com/applandinc/applandinc.github.io/blob/master/_docs/reference/appmap-python.md#supported-versions
python = "^3.6"
PyYAML = "^5.3.0"
inflection = "^0.3.0"
importlib-metadata = ">=0.8"
Django = { version = "^3.1.6", python = "^3.6", optional = true }
flask = { version = "^1.1.2", python = "^3.6", optional = true }
[tool.poetry.dev-dependencies]
httpretty = "^1.0.5"
pytest = "^6.1.2"
pytest-randomly = "^3.5.0"
pylint = "^2.6.0"
flake8 = "^3.8.4"
pyfakefs = "^4.3.2"
pprintpp = "^0.4.0"
coverage = "^5.3"
pytest-mock = "^3.5.1"
SQLAlchemy = { version = "^1.4.11", python = "^3.6"}
tox = "^3.22.0"
tox-pyenv = "^1.1.0"
tox-travis = "^0.12"
Twisted = "^21.2.0"
requests = "^2.25.1"
pytest-django = "^4.4.0"
[tool.poetry.extras]
test = ["Django", "flask"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."pytest11"]
appmap = "appmap.pytest"
[tool.poetry.scripts]
appmap-agent-init = "appmap.command.appmap_agent_init:run"
appmap-agent-status = "appmap.command.appmap_agent_status:run"
appmap-agent-validate = "appmap.command.appmap_agent_validate:run"