mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-19 12:57:58 +00:00
linting, moved env, updated contrib credit
This commit is contained in:
parent
81d1ebeaef
commit
bf12e7df15
83 changed files with 1560 additions and 640 deletions
15
environments/community/pytorch_optimizer_coding/FOB/setup.py
Normal file
15
environments/community/pytorch_optimizer_coding/FOB/setup.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
from setuptools import setup
|
||||
|
||||
with open("requirements.txt", "r", encoding="utf8") as f:
|
||||
requirements = [line.strip() for line in f.readlines()]
|
||||
|
||||
setup(
|
||||
name="pytorch-fob",
|
||||
version="0.1.0",
|
||||
description="Fast Optimizer Benchmark",
|
||||
url="https://github.com/automl/fob",
|
||||
author="Simon Blauth, Tobias Bürger, Zacharias Häringer",
|
||||
license="MIT",
|
||||
packages=["pytorch_fob"],
|
||||
install_requires=requirements,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue