Skip to content

Instantly share code, notes, and snippets.

@staticf0x
Created February 25, 2021 10:27
Show Gist options
  • Save staticf0x/1b6e213833ce79aa7a51a2d37942a5aa to your computer and use it in GitHub Desktop.
Save staticf0x/1b6e213833ce79aa7a51a2d37942a5aa to your computer and use it in GitHub Desktop.

Revisions

  1. staticf0x created this gist Feb 25, 2021.
    26 changes: 26 additions & 0 deletions pyproject.toml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,26 @@
    [tool.poetry]
    name = "xxx"
    version = "1.0.0"
    description = "xxx"
    authors = ["xxx"]
    license = "MIT"

    [tool.poetry.dependencies]
    python = "^3.7"
    numpy = "^1.20.1"
    matplotlib = "^3.3.4"
    Django = "^3.1.7"
    gunicorn = "^20.0.4"
    whitenoise = "^5.2.0"
    psycopg2 = "^2.8.6"
    django-dotenv = "^1.4.2"

    [tool.poetry.dev-dependencies]
    pylint = "^2.7.1"
    green = "^3.2.5"
    pycodestyle = "^2.6.0"
    isort = "^5.7.0"

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