spectrepy/pyproject.toml

66 lines
2.2 KiB
TOML

[tool.poetry]
name = "spectrepy"
version = "0.1.0"
license = "MIT"
description = "Python bindings for the Spectre Password Manager"
authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
repository = "https://github.com/enpaul/spectrepy/"
packages = [
{include = "spectrepy.py"},
{include = "tests/*.py", format = "sdist"}
]
keywords = ["spectre", "mpw", "password", "manager", "masterpassword"]
readme = "README.md"
classifiers = [
"Development Status :: 1 - Planning",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython"
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.group.dev.dependencies]
black = {version = "^23.3.0", python = "^3.10"}
blacken-docs = {version = "^1.13.0", python = "^3.10"}
ipython = {version = "^8.12.0", python = "^3.10"}
mdformat = {version = "^0.7.16", python = "^3.10"}
mdformat-gfm = {version = "^0.3.5", python = "^3.10"}
mypy = {version = "^1.1.1", python = "^3.10"}
pre-commit = {version = "^3.2.1", python = "^3.10"}
pre-commit-hooks = {version = "^4.4.0", python = "^3.10"}
pylint = {version = "^2.17.1", python = "^3.10"}
reorder-python-imports = {version = "^3.9.0", python = "^3.10"}
types-toml = {version = "^0.10.8.6", python = "^3.10"}
toml = {version = "^0.10.2", python = "^3.10"}
[tool.poetry.group.test.dependencies]
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
toml = "^0.10.2"
typing-extensions = {version = "^4.5.0", python = "^3.8"}
[tool.poetry.group.ci.dependencies]
tox = "^3.20"
tox-poetry-installer = {extras = ["poetry"], version = "^0.10.2"}
[tool.poetry.group.security.dependencies]
bandit = {version = "^1.7.5", python = "^3.10"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"