Skip to content

Commit

Permalink
setup.py: flake8-comprehension: fix issue (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry committed Sep 14, 2023
1 parent 375c3c5 commit 5f141e4
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,39 +32,41 @@
]


setup_args = dict( # noqa: C408
name="gto",
use_scm_version=True,
setup_requires=["setuptools_scm", "fastentrypoints>=0.12"],
description="Version and deploy your models following GitOps principles",
long_description=(Path(__file__).parent / "README.md").read_text(encoding="utf8"),
long_description_content_type="text/markdown",
author="Alexander Guschin",
author_email="aguschin@iterative.ai",
download_url="https://github.com/iterative/gto",
license="Apache License 2.0",
install_requires=install_requires,
extras_require={"tests": tests},
keywords="git repo repository artifact registry developer-tools collaboration",
python_requires=">=3.8",
classifiers=[
setup_args = {
"name": "gto",
"use_scm_version": True,
"setup_requires": ["setuptools_scm", "fastentrypoints>=0.12"],
"description": "Version and deploy your models following GitOps principles",
"long_description": (Path(__file__).parent / "README.md").read_text(
encoding="utf8"
),
"long_description_content_type": "text/markdown",
"author": "Alexander Guschin",
"author_email": "aguschin@iterative.ai",
"download_url": "https://github.com/iterative/gto",
"license": "Apache License 2.0",
"install_requires": install_requires,
"extras_require": {"tests": tests},
"keywords": "git repo repository artifact registry developer-tools collaboration",
"python_requires": ">=3.8",
"classifiers": [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
packages=find_packages(exclude=["tests"]),
include_package_data=True,
entry_points={
"packages": find_packages(exclude=["tests"]),
"include_package_data": True,
"entry_points": {
"console_scripts": ["gto = gto.cli:app"],
"gto.enrichment": [
"gto = gto.index:GTOEnrichment",
],
},
zip_safe=False,
)
"zip_safe": False,
}

if __name__ == "__main__":
setup(**setup_args)

0 comments on commit 5f141e4

Please sign in to comment.