22 lines
400 B
TOML
22 lines
400 B
TOML
[tool.poetry]
|
|
name = "buguser"
|
|
version = "0.2.0"
|
|
description = ""
|
|
authors = ["Guilhem Lavaux <guilhem.lavaux@iap.fr>"]
|
|
license = "MIT"
|
|
packages = []
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
click = "^8.1.7"
|
|
requests = "^2.31.0"
|
|
bs4 = "^0.0.2"
|
|
|
|
[tool.poetry.scripts]
|
|
buguser = "buguser:main"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|