isdn-python/pyproject.toml

45 lines
1.1 KiB
TOML
Raw Normal View History

2023-03-26 04:57:18 +09:00
[tool.poetry]
name = "isdn"
2023-04-03 04:18:13 +09:00
version = "1.0.1"
2023-03-26 04:57:18 +09:00
description = "Library for ISDN (International Standard Dojin Numbering)"
authors = ["Babibubebon <babibubebon@babibubebo.org>"]
homepage = "https://github.com/Babibubebon/isdn-python"
license = "MIT"
readme = "README.md"
repository = "https://github.com/Babibubebon/isdn-python"
packages = [{ include = "isdn" }]
keywords = ["book", "doujinshi", "identifier"]
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.scripts]
isdn = "isdn.command:cli"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
requests = "^2.28.2"
lxml = "^4.9.2"
2023-04-08 03:32:34 +09:00
pydantic-xml = {extras = ["lxml"], version = "^0.6.0"}
2023-03-26 04:57:18 +09:00
[tool.poetry.group.dev.dependencies]
isort = "^5.12.0"
black = "^23.1.0"
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"