Skip to content
Snippets Groups Projects
Select Git revision
  • develop default protected
  • 1514-update-channels
  • 1518-update-django-allauth
  • 1515-update-click
  • master
  • 1434-update-pyld
  • heyarne/funkwhale-enhancement/linting
  • 1481
  • profile-menu-redesign
  • update-frontend-dependencies
  • fix-track-table
  • back-option-for-edits
  • album-sliders
  • cherry-pick-31413fe6
  • 1108-remove-jwt-and-switch-to-oauth-for-ui-auth
  • set-sast-config-2
  • set-sast-config-1
  • 1121-download
  • plugins-v3
  • plugins-v2
  • 1.1.2
  • 1.1.1
  • 1.1
  • 1.1-rc2
  • 1.1-rc1
  • 1.0.1
  • 1.0
  • 1.0-rc1
  • 0.21.2
  • 0.21.1
  • 0.21
  • 0.21-rc2
  • 0.21-rc1
  • 0.20.1
  • 0.20.0
  • 0.20.0-rc1
  • 0.19.1
  • 0.19.0
  • 0.19.0-rc2
  • 0.19.0-rc1
40 results

i18n-populate-contextualized-strings.sh

Blame
  • Forked from funkwhale / funkwhale
    Source project has a limited visibility.
    pyproject.toml NaN GiB
    [tool.poetry]
    name = "funkwhale-api-client"
    version = "0.1.0-rc1"
    description = "A client library for accessing Funkwhale API"
    
    authors = []
    
    readme = "README.md"
    packages = [
        {include = "funkwhale_api_client"},
    ]
    include = ["CHANGELOG.md", "funkwhale_api_client/py.typed"]
    
    [tool.poetry.dependencies]
    python = "^3.7"
    httpx = ">=0.15.4,<0.24.0"
    attrs = ">=21.3.0"
    python-dateutil = "^2.8.0"
    
    [tool.poetry.dev-dependencies]
    pytest = "^7.1.3"
    pytest-cov = "^3.0.0"
    
    [build-system]
    requires = ["poetry-core>=1.0.0"]
    build-backend = "poetry.core.masonry.api"
    
    [tool.black]
    line-length = 120
    target_version = ['py37', 'py38', 'py39']
    exclude = '''
    (
      /(
        | \.git
        | \.venv
        | \.mypy_cache
      )/
    )
    '''
    
    [tool.isort]
    line_length = 120
    profile = "black"