-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
34 lines (30 loc) · 1.22 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
[tool.poetry]
authors = ["Nikolay Panov <[email protected]>"]
description = "URL normalization for Python"
homepage = "https://github.com/niksite/url-normalize"
keywords = ['url', 'normalization', 'normalize']
license = "MIT"
name = "url-normalize"
readme = "README.md"
repository = "https://github.com/niksite/url-normalize"
version = "1.4.3"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/niksite/url-normalize/issues"
"Changelog" = "https://github.com/niksite/url-normalize#url-normalize"
[tool.poetry.dependencies]
python = "~2.7 || ^3.6"
six = "*"
[tool.poetry.dev-dependencies]
bandit = [{version="*", python="^3.6"}]
flake8 = [{version="*", python="^3.6"}]
pluggy = [{version="0.13.1", python="~2.7"}]
pydocstyle = [{version="*", python="^3.6"}]
pylint = [{version="*", python="^3.6"}]
pytest = [{version="3.10.1", python="~2.7"},{version="*", python="^3.6"}]
pytest-cov = [{version="2.9.0", python="~2.7"},{version="*", python="^3.6"}]
pytest-flakes = [{version="4.0.1", python="~2.7"},{version="*", python="^3.6"}]
pytest-socket = [{version="0.3.3", python="~2.7"}, {version="*", python="^3.6"}]
tox = [{version="*", python="^3.6"}]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"