Skip to content
Snippets Groups Projects
Select Git revision
  • kuba
  • main default protected
  • nicoa96-main-patch-39695
  • nicoa96-main-patch-29647
  • jt/bhtfin
  • jt/bhtnew
  • revert-adeaff5e
  • nicoa96-main-patch-73354
  • nicoa96-main-patch-47348
  • jt/bht
  • jima1
  • jima
  • na/bhtalgorithmus
  • yuhe
  • jn/nasa-data
  • Nicola
16 results

pyproject.toml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pyproject.toml 614 B
    [tool.poetry]
    name = "comp-sci-project"
    version = "0.1.0"
    description = ""
    authors = []
    readme = "README.md"
    
    [tool.poetry.dependencies]
    python = "~3.11"
    
    [tool.poetry.group.dev.dependencies]
    ruff = "^0.0.267"
    pre-commit = "^3.3.1"
    yapf = "^0.32.0"
    toml = "^0.10.2"
    
    [build-system]
    requires = ["poetry-core"]
    build-backend = "poetry.core.masonry.api"
    
    [tool.ruff]
    # disable line-length lint since it is handled by yapf
    ignore = ["E501"]
    line-length = 118
    # pyflakes, pycodestyle, isort
    #select = ["F", "E", "W", "I001"]
    
    [tool.yapf]
    based_on_style = "pep8"
    column_limit = 120
    allow_split_before_dict_value = false