Skip to content

Instantly share code, notes, and snippets.

@Celeborn2BeAlive
Created August 13, 2020 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Celeborn2BeAlive/d9b5b00f2bc899c2001124c3ab90b259 to your computer and use it in GitHub Desktop.
Save Celeborn2BeAlive/d9b5b00f2bc899c2001124c3ab90b259 to your computer and use it in GitHub Desktop.
[tool.poetry]
name = "c2ba_hypermodern_python"
version = "0.1.0"
description = "Project built by going through Hypermodern Python tutorial"
homepage = "https://gitlab.com/c2ba_sandbox/sandbox_python/hypermodern_python"
repository = "https://gitlab.com/c2ba_sandbox/sandbox_python/"
authors = ["Celeborn2BeAlive <laurent.noel.c2ba@gmail.com>"]
keywords = ["hypermodern", "python", "tutorial"]
[tool.poetry.dependencies]
python = "^3.7"
typer = "^0.3.1"
requests = "^2.24.0"
colorama = "^0.4.3"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
pytest = "^6.0.1"
coverage = {extras = ["toml"], version = "^5.2.1"}
pytest-cov = "^2.10.0"
[tool.poetry.scripts]
hypermodern-python = "c2ba_hypermodern_python.console:app"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["c2ba_hypermodern_python"]
[tool.coverage.report]
show_missing = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment