-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
77 lines (69 loc) · 2.35 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
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
74
75
76
77
# This file is part of "pytest-austin" which is released under GPL.
#
# See file LICENCE or go to http://www.gnu.org/licenses/ for full license
# details.
#
# pytest-austin is a Python wrapper around Austin, the CPython frame stack
# sampler.
#
# Copyright (c) 2018-2020 Gabriele N. Tornetta <[email protected]>.
# All rights reserved.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
[tool.poetry]
name = "pytest-austin"
version = "0.1.0"
description = "Austin plugin for pytest"
license = "GPL-3.0-or-later"
authors = ["Gabriele N. Tornetta <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/P403n1x87/pytest-austin"
repository = "https://github.com/P403n1x87/pytest-austin"
keywords = ["performance", "profiling", "testing", "development"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
packages = [
{ include = "pytest_austin" },
]
[tool.poetry.plugins.pytest11]
cool_plugin = "pytest_austin.plugin"
[tool.poetry.dependencies]
python = "^3.6"
austin-python = "^0.1.0"
dataclasses = "*"
psutil = ">=5.7.0"
ansimarkup = "^1.4.0"
[tool.poetry.dev-dependencies]
coverage = {extras = ["toml"], version = "5.2.1"}
pytest = ">=5.4.2"
pytest-cov = ">=2.8.1"
nox = "^2020.5.24"
codecov = "^2.1.3"
[tool.poetry.urls]
issues = "https://github.com/P403n1x87/pytest-austin/issues"
[tool.coverage.run]
branch = true
source = ["pytest_austin"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"