File: pyproject.toml

package info (click to toggle)
python-requirements-detector 1.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 472 kB
  • sloc: python: 2,096; makefile: 13; sh: 1
file content (21 lines) | stat: -rw-r--r-- 500 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tool.poetry]
name = "test8"
version = "0.1.0"
description = ""
authors = ["Nobody Smith <nobody@nowhere.com>"]
license = "MIT"

[tool.poetry.dependencies]
python = "^3.3"
requests = ">=2.25,<2.27"
twine = "~3.8"
click = "==8.0.4"
pyroma = {version = ">=2.4", optional = true}
mytestdependency = {git = "ssh://git@github.com/MyOrg/MyRepo.git",rev = "1.2.3"}

[tool.poetry.dev-dependencies]
pytest = "^6.2.4"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"