Created
January 15, 2020 16:28
-
-
Save 1somorphism/f3a1ced4e6507383b5f16daffcb7a140 to your computer and use it in GitHub Desktop.
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
[tool.poetry] | |
name = "sample" | |
version = "0.1.0" | |
description = "" | |
authors = ["Your Name <[email protected]>"] | |
[[tool.poetry.source]] | |
name = "private-nexus" | |
url = "http://10.0.0.0:8080/repository/pypi-hosted/simple/" | |
[tool.poetry.dependencies] | |
python = "^3.7" | |
some-private-lib = "^0.1" | |
[tool.poetry.dev-dependencies] | |
[build-system] | |
requires = ["poetry>=1.0"] | |
build-backend = "poetry.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment