File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ include tox.ini
13
13
14
14
include scripts/gql-cli
15
15
16
+ include gql/py.typed
17
+
16
18
recursive-include tests *.py *.graphql *.cnf *.yaml *.pem
17
19
recursive-include docs *.txt *.rst conf.py Makefile make.bat *.jpg *.png *.gif
18
20
recursive-include docs/code_examples *.py
Original file line number Diff line number Diff line change
1
+ # Marker file for PEP 561. The gql package uses inline types.
Original file line number Diff line number Diff line change 85
85
],
86
86
keywords = "api graphql protocol rest relay gql client" ,
87
87
packages = find_packages (include = ["gql*" ]),
88
+ # PEP-561: https://www.python.org/dev/peps/pep-0561/
89
+ package_data = {"gql" : ["py.typed" ]},
88
90
install_requires = install_requires ,
89
91
tests_require = install_all_requires + tests_requires ,
90
92
extras_require = {
You can’t perform that action at this time.
0 commit comments