Skip to content

Commit

Permalink
pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dulmandakh committed Jun 29, 2024
1 parent fd9ecef commit c113332
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 107 deletions.
50 changes: 50 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
[build-system]
requires = [
"setuptools >= 61.0",
"graphql-core>=3.1,<3.3",
"graphql-relay>=3.1,<3.3",
]
build-backend = "setuptools.build_meta"


[project]
name = "graphene"
dynamic = ["version"]
dependencies = ["graphql-core>=3.1,<3.3", "graphql-relay>=3.1,<3.3"]
requires-python = ">=3.8"
authors = [{ name = "Syrus Akbary", email = "[email protected]" }]
description = "GraphQL Framework for Python"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["api", "graphql", "protocol", "rest", "relay", "graphene"]
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",
]

[tool.setuptools.dynamic]
version = { attr = "graphene.__version__" }

[project.optional-dependencies]
dev = ["ruff==0.5.0", "graphene[test]"]
test = [
"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",
]

[project.urls]
Homepage = "https://graphene-python.org/"
Repository = "https://github.com/graphql-python/graphene"
16 changes: 0 additions & 16 deletions setup.cfg

This file was deleted.

91 changes: 0 additions & 91 deletions setup.py

This file was deleted.

0 comments on commit c113332

Please sign in to comment.