-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically format code with black
- Loading branch information
github-actions
committed
May 28, 2024
1 parent
b6427d1
commit 09d06ba
Showing
1 changed file
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -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 | ||
) |