-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 979 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 979 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "graphql-schema-diff"
description = "Compare GraphQL Schemas"
readme = "README.md"
version = "1.2.5"
authors = [
{ name = "Nahuel Ambrosini", email = "ambro17.1@gmail.com" }
]
dependencies = [
"graphql-core>=3.0.1",
"attrs>=19.3.0",
]
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
license = "GPL-3.0-or-later"
[project.scripts]
schemadiff = "schemadiff.__main__:cli"
[project.urls]
Homepage = "https://github.com/Ambro17/graphql-schema-diff"
Documentation = "https://ambro17.github.io/graphql-schema-diff/"
[project.optional-dependencies]
dev = [
"pytest",
"flake8",
"pytest",
"pytest-cov",
"codecov",
"pdoc3==0.9.1",
"hatch",
]
[tool.hatch.build.targets.wheel]
packages = ["schemadiff"]