Skip to content

Instantly share code, notes, and snippets.

@corneliusroemer
Created November 11, 2022 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corneliusroemer/e8292beef1a0610f7962f1b65c5d1eeb to your computer and use it in GitHub Desktop.
Save corneliusroemer/e8292beef1a0610f7962f1b65c5d1eeb to your computer and use it in GitHub Desktop.
[tool.poetry]
name = "nwkfmt"
version = "0.1.0"
description = "Simple Newick tree validator and formatter"
authors = ["Cornelius Roemer <cornelius.roemer@gmail.com>"]
readme = "README.md"
[tool.poetry.scripts]
greet = "nwkfmt.cli:main"
[tool.poetry.dependencies]
python = "^3.7"
biopython = "^1.73"
typer = ">=0.6, <1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
@corneliusroemer
Copy link
Author

This works but that doesn't solve the more general problem of Poetry getting stuck on a single dependency resolution problem:

[tool.poetry]
name = "nwkfmt"
version = "0.1.1"
description = "Simple Newick tree validator and formatter"
authors = ["Cornelius Roemer <cornelius.roemer@gmail.com>"]
readme = "README.md"

[tool.poetry.scripts]
nwkfmt = "nwkfmt.cli:entry_point"

[tool.poetry.dependencies]
python = ">=3.8, <3.11"
biopython = "^1.73"
typer = ">=0.6, <1"

[tool.poetry.dev-dependencies]


[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment