Created
August 13, 2020 15:00
-
-
Save Celeborn2BeAlive/d9b5b00f2bc899c2001124c3ab90b259 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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 <[email protected]>"] | |
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