mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-23 16:54:56 +00:00
15 lines
430 B
Python
15 lines
430 B
Python
from setuptools import setup
|
|
|
|
with open("requirements.txt", "r", encoding="utf8") as f:
|
|
requirements = [l.strip() for l 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,
|
|
)
|