-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 945 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
36
37
[tool.flake8]
max-line-length = 88
[tool.poetry]
name = "python-urbandict"
version = "0.3.10"
description = "Python wrapper for the Urban Dictionary API."
authors = ["atbuy <buy@atbuy.dev>"]
license = "MIT"
homepage = "https://github.com/atbuy/pyurbandict"
repository = "https://github.com/atbuy/pyurbandict"
keywords = ["urban", "dictionary", "api", "wrapper", "python"]
include = ["README.md"]
readme = "README.md"
packages = [
{include = "pyurbandict"}
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32.3"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/atbuy/pyurbandict/issues"
"Source Code" = "https://github.com/atbuy/pyurbandict"
"CI/CD" = "https://github.com/atbuy/pyurbandict/actions"
[tool.poetry.group.dev.dependencies]
tox = "^4.6.0"
pre-commit = "^3.3.3"
pytest = "^7.3.2"
pytest-cov = "^4.1.0"
ruff = "^0.3.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"