Skip to content

Commit

Permalink
fix pyproject.toml and README instructions for poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
manulera committed Jan 15, 2025
1 parent 8790896 commit 44f1dad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,10 @@ poetry config virtualenvs.in-project true
# Install dependencies (extras are required for tests to pass)
poetry install --all-extras

# Activate virtual environment
# Activate virtual environment (poetry version 2)
poetry env activate

# Activate virtual environment (poetry version 1)
poetry shell

# Install pre-commit hooks
Expand Down
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ readme = "README.md"
Changelog = "https://github.com/pydna-group/pydna/blob/master/docs/CHANGELOG.md#changelog"
[tool.poetry]
description = "Representing double stranded DNA and functions for simulating cloning and homologous recombination between DNA molecules."
authors = [
{name = "Björn F. Johansson", email = "[email protected]"},
{name = "Manuel Lera-Ramirez", email = "[email protected]"}
]
authors = ["Björn F. Johansson<[email protected]>", "Manuel Lera-Ramirez<[email protected]>"]
documentation = "https://pydna-group.github.io/pydna"
homepage = "https://github.com/pydna-group/pydna#-pydna"
license = "BSD"
Expand Down

0 comments on commit 44f1dad

Please sign in to comment.