djbase

A base template to bootstrap common Django projects.
git clone https://s.sonu.ch/~srfsh/nelci.git
Log | Files | Refs | README | LICENSE

pyproject.toml (434B)


      1 [tool.poetry]
      2 name = "djbase"
      3 version = "0.1.0"
      4 description = "django base"
      5 authors = ["srfsh <srfsh@sonu.ch>"]
      6 
      7 [tool.poetry.dependencies]
      8 python = "^3.6"
      9 Django = "^3.2.4"
     10 gunicorn = {version = "^20.1.0", optional = true}
     11 
     12 [tool.poetry.dev-dependencies]
     13 django-debug-toolbar = {version = "^3.2.1"}
     14 
     15 [tool.poetry.extras]
     16 wsgi = ["gunicorn"]
     17 
     18 [build-system]
     19 requires = ["poetry-core>=1.0.0"]
     20 build-backend = "poetry.core.masonry.api"