Skip to content

Commit

Permalink
Automatically format code with black
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed May 28, 2024
1 parent b6427d1 commit 09d06ba
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,23 @@
long_description = f.read()

# Read the contents of requirements.txt file
with open('requirements.txt') as f:
with open("requirements.txt") as f:
required_packages = f.read().splitlines()

setuptools.setup(
name="hwgptbench",
version="0.1",
author="AutoML Freiburg",
author_email="[email protected]",
description=("A surrogate benchmark for multi-objective neural architecture search."),
description=(
"A surrogate benchmark for multi-objective neural architecture search."
),
long_description=long_description,
url="https://github.com/automl/HW-Aware-LLM-Bench",
long_description_content_type="text/markdown",
license='Apache License 2.0',
license="Apache License 2.0",
keywords="machine learning"
"surrogate benchmark gpt hardware-aware NAS deep learning",
"surrogate benchmark gpt hardware-aware NAS deep learning",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
Expand All @@ -28,9 +30,9 @@
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
python_requires='>=3.6',
platforms=['Linux'],
python_requires=">=3.6",
platforms=["Linux"],
install_requires=required_packages,
include_package_data=True
#extras_require=optional_requirements
include_package_data=True,
# extras_require=optional_requirements
)

0 comments on commit 09d06ba

Please sign in to comment.