Skip to content
This repository was archived by the owner on Jun 22, 2021. It is now read-only.

Commit fb8d0da

Browse files
authored
Create setup.cfg
1 parent c655b0d commit fb8d0da

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

setup.cfg

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
[metadata]
2+
name = graphene_django_hook
3+
version = 0.1.0
4+
description = Generate graphql schema.
5+
long_description = file: README.md
6+
long_description_content_type = text/markdown
7+
url = https://github.com/jackton1/graphene-django-precommit-hook
8+
author = Tonye Jack
9+
author_email = [email protected]
10+
license = MIT
11+
license_file = LICENSE
12+
classifiers =
13+
License :: OSI Approved :: MIT License
14+
Programming Language :: Python :: 3
15+
Programming Language :: Python :: 3 :: Only
16+
Programming Language :: Python :: 3.6
17+
Programming Language :: Python :: 3.7
18+
Programming Language :: Python :: 3.8
19+
Programming Language :: Python :: Implementation :: CPython
20+
Programming Language :: Python :: Implementation :: PyPy
21+
22+
[options]
23+
py_modules = graphene_django_hook
24+
python_requires = >=3.6.1
25+
26+
[options.entry_points]
27+
console_scripts =
28+
graphene-django-hook=graphene_django_hook:main
29+
30+
[bdist_wheel]
31+
universal = True
32+
33+
[mypy]
34+
check_untyped_defs = true
35+
disallow_any_generics = true
36+
disallow_incomplete_defs = true
37+
disallow_untyped_defs = true
38+
no_implicit_optional = true
39+
40+
[mypy-testing.*]
41+
disallow_untyped_defs = false
42+
43+
[mypy-tests.*]
44+
disallow_untyped_defs = false

0 commit comments

Comments
 (0)