Skip to content

Instantly share code, notes, and snippets.

@chanansh
Created December 11, 2022 17:44
Show Gist options
  • Save chanansh/bb93ee7438d6d71f8b21fea65c9aa765 to your computer and use it in GitHub Desktop.
Save chanansh/bb93ee7438d6d71f8b21fea65c9aa765 to your computer and use it in GitHub Desktop.
[tool.poetry]
name = "ar"
version = "0.1.0"
description = ""
readme = "README.md"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.poetry.dependencies]
torch = [
{markers = "sys_platform == 'macos'", url = "https://download.pytorch.org/whl/cpu/torch-1.13.0-cp310-none-macosx_11_0_arm64.whl"},
{markers = "sys_platform == 'linux' and platform_machine == 'arm64'", url="https://download.pytorch.org/whl/torch-1.13.0-cp310-cp310-manylinux2014_aarch64.whl"},
{markers = "sys_platform == 'linux' and platform_machine == 'x86_64'", url="https://download.pytorch.org/whl/cpu/torch-1.13.0%2Bcpu-cp310-cp310-linux_x86_64.whl"}]
python = "^3.10"
pytest = "^7.2.0"
toml = "^0.10.2"
scikit-learn = "^1.1.3"
scikit-optimize = "^0.9.0"
ax-platform = "^0.2.8"
setuptools = "^65.5.1"
fire = "^0.4.0"
jupyter = "^1.0.0"
streamlit-ace = "^0.1.1"
humanfriendly = "^10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment