Skip to content

Instantly share code, notes, and snippets.

@bradleyhurley
Created September 20, 2022 04:35
Show Gist options
  • Save bradleyhurley/c59be64bed4475c4afbd33b3a52cdfe0 to your computer and use it in GitHub Desktop.
Save bradleyhurley/c59be64bed4475c4afbd33b3a52cdfe0 to your computer and use it in GitHub Desktop.
Recreate Poetry Issue
[tool.poetry]
name = "my-project"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
[[tool.poetry.source]]
name = "local-pypi-snapshot"
url = "https://artifactory.company.com/artifactory/api/pypi/local-pypi-snapshot/simple"
secondary = true
[[tool.poetry.source]]
name = "local-pypi-release"
url = "https://artifactory.company.com/artifactory/api/pypi/local-pypi-release/simple"
secondary = true
[tool.poetry.dependencies]
python = "~3.9"
other-internal-project = "0.92.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
'ignore:distutils Version classes are deprecated:DeprecationWarning',
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment