Skip to content

Commit b9503d9

Browse files
committed
chore(deps): #43 add marshmallow-dataclass as a dependency in install_requires
1 parent d3b7fbd commit b9503d9

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,19 @@ def get_version() -> str:
2424
name="pygitguardian",
2525
version=get_version(),
2626
packages=find_packages(exclude=["tests"]),
27-
description="Python Wrapper for GitGuardian's API -- Scan security policy breaks everywhere",
27+
description="Python Wrapper for GitGuardian's API -- Scan security "
28+
"policy breaks everywhere",
2829
long_description=read("README.md"),
2930
long_description_content_type="text/markdown",
3031
url="https://github.com/GitGuardian/py-gitguardian",
3132
author="GitGuardian",
3233
author_email="[email protected]",
3334
maintainer="GitGuardian",
34-
install_requires=["marshmallow>=3.5", "requests>=2"],
35+
install_requires=[
36+
"marshmallow>=3.5",
37+
"requests>=2",
38+
"marshmallow-dataclass >=8.5.8, <8.6.0",
39+
],
3540
include_package_data=True,
3641
zip_safe=True,
3742
license="MIT",

0 commit comments

Comments
 (0)