graphene/pyproject.toml

41 lines
1.2 KiB
TOML
Raw Normal View History

2024-06-28 17:08:19 +03:00
[build-system]
2024-07-05 18:15:20 +03:00
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2024-06-28 17:08:19 +03:00
2024-07-05 18:15:20 +03:00
[tool.poetry]
2024-06-28 17:08:19 +03:00
name = "graphene"
2024-07-05 18:15:20 +03:00
version = "3.3.0"
authors = [ "Syrus Akbary <me@syrusakbary.com>" ]
2024-06-28 17:08:19 +03:00
description = "GraphQL Framework for Python"
readme = "README.md"
2024-07-05 18:15:20 +03:00
license = "MIT"
2024-06-28 17:08:19 +03:00
keywords = ["api", "graphql", "protocol", "rest", "relay", "graphene"]
2024-07-05 18:15:20 +03:00
homepage = "https://graphene-python.org/"
repository = "https://github.com/graphql-python/graphene"
2024-06-28 17:08:19 +03:00
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
2024-07-05 18:15:20 +03:00
[tool.poetry.dependencies]
python = "^3.8"
graphql-core = ">=3.1,<3.3"
graphql-relay = ">=3.1,<3.3"
2024-06-28 17:08:19 +03:00
2024-07-05 18:15:20 +03:00
[tool.poetry.group.test.dependencies]
tox = "*"
pytest = ">=8,<9"
pytest-benchmark = ">=4,<5"
pytest-cov = ">=5,<6"
pytest-mock = ">=3,<4"
pytest-asyncio = ">=0.16,<2"
snapshottest = ">=0.6,<1"
coveralls = ">=3.3,<5"