Skip to content

Instantly share code, notes, and snippets.

@thedrow
Created February 26, 2020 17:04
Show Gist options
  • Select an option

  • Save thedrow/5b7d581db41f2d8d40ca9e4c9c98d283 to your computer and use it in GitHub Desktop.

Select an option

Save thedrow/5b7d581db41f2d8d40ca9e4c9c98d283 to your computer and use it in GitHub Desktop.
[tool.poetry]
name = "jumpstarter"
version = "0.1.0"
description = "Program initialization toolkit"
authors = ["Omer Katz <omer.drow@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.6"
networkx = "^2.4"
anyio = "^1.2.3"
dependencies = "^1.0.0"
attrs = "^19.3.0"
cached-property = { version = "^1.5.0", python = "<3.8" }
[tool.poetry.dev-dependencies]
pytest = "^5.3.5"
pydocstyle = "^5.0.2"
pycodestyle = "^2.5.0"
trio = "^0.13.0"
black = "^19.10b0"
mock = {version = "^4.0.1", python = "<3.8"}
pytest-echo = "^1.7.1"
[tool.black]
line-length = 120
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment