-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
28 lines (25 loc) · 870 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "py-graphql-mapper"
authors = [
{ name="Alex Dap", email="[email protected]" },
]
readme = "README.md"
keywords = ["python", "graphql", "mapping"]
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version", "description"]
[project.scripts]
pgmcodegen = "codegen.__main__:main"
[project.urls]
"Homepage" = "https://github.com/dapalex/py-graphql-mapper/"
"Source Code" = "https://github.com/dapalex/py-graphql-mapper/tree/1.1.2"
"Bug Tracker" = "https://github.com/dapalex/py-graphql-mapper/issues"
"Release Notes" = "https://github.com/dapalex/py-graphql-mapper/tree/1.1.2/RELEASE_NOTES.MD"