summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2021-04-29 08:21:50 -0700
committerJohn L. Villalovos <john@sodarock.com>2021-04-30 07:07:17 -0700
commitab343ef6da708746aa08a972b461a5e51d898f8b (patch)
tree98eabab08089a21386e4e56a1fe8fd6ff90af52d /setup.py
parent98891eb2c52051134fd3046a4ef5d7b0a6af8fec (diff)
downloadgitlab-ab343ef6da708746aa08a972b461a5e51d898f8b.tar.gz
chore: have flake8 check the entire project
Have flake8 run at the top-level of the projects instead of just the gitlab directory.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index d4bf24c..65a6de5 100644
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,9 @@ setup(
url="https://github.com/python-gitlab/python-gitlab",
packages=find_packages(),
install_requires=["requests>=2.22.0", "requests-toolbelt>=0.9.1"],
- package_data = {'gitlab': ['py.typed'], },
+ package_data={
+ "gitlab": ["py.typed"],
+ },
python_requires=">=3.6.0",
entry_points={"console_scripts": ["gitlab = gitlab.cli:main"]},
classifiers=[