-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
35 lines (30 loc) · 998 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
[tool.poetry]
name = "nopdb"
version = "0.2.0"
description = "Non-interactive Python debugger"
authors = ["Ondřej Cífka <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.rst"
repository = "https://github.com/cifkao/nopdb"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research"
]
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.0"
mypy = "^0.812"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"