-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (36 loc) · 1.15 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
# This Source Code Form is subject to the terms of the Mozilla
# Public License, v. 2.0. If a copy of the MPL was not
# distributed with this file, You can obtain one at
# https://mozilla.org/MPL/2.0/.
#
# Copyright 2024 MonetDB Foundation
# Copyright August 2008 - 2023 MonetDB B.V.
# Copyright 1997 - July 2008 CWI
[tool.poetry]
name = "monetdb_stethoscope"
version = "0.5.0"
description = "MonetDB profiler connection tool"
readme = "README.rst"
authors = ["Lucas Pereira <[email protected]>", "Panagiotis Koutsourakis <[email protected]>"]
repository = "https://github.com/MonetDBSolutions/monetdb-stethoscope"
[tool.poetry.dependencies]
python = "^3.7"
pymonetdb = "^1.6.2"
[tool.poetry.group.test.dependencies]
pytest = "^7.2.0"
pytest-runner = "^5.2"
pytest-cov = "^2.9.0"
coverage = "^4.5"
codecov = "^2.1.3"
[tool.poetry.group.docs.dependencies]
sphinx = "^3.0.3"
[tool.poetry.group.dev.dependencies]
pycodestyle = "^2.5"
pydocstyle = "^4.0"
flake8 = "^5.0.0"
bump2version = "^1.0.0"
[tool.poetry.scripts]
stethoscope = 'monetdb_stethoscope.stethoscope:main'
[build-system]
requires = ["poetry>=1.2.0"]
build-backend = "poetry.masonry.api"