Skip to content

Instantly share code, notes, and snippets.

@nk9
Created December 15, 2023 13:02
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 nk9/4fa6fe37487d50308deacd425c8ade16 to your computer and use it in GitHub Desktop.
Save nk9/4fa6fe37487d50308deacd425c8ade16 to your computer and use it in GitHub Desktop.
[tool.isort]
profile = "black"
multi_line_output = 3
known_first_party = ["tests"]
skip_glob = ["migrations/*"]
[tool.black]
extend-exclude = "^/migrations/"
line-length = 120
[tool.poetry]
name = "ed-finder-utils"
version = "0.1.0"
description = ""
readme = "README.md"
packages = [{include = "ed_finder_utils"}]
[tool.poetry.dependencies]
python = "^3.10"
psycopg2-binary = "^2.9.9"
us = "^3.1.1"
pyproj = "^3.6.1"
geojson = "^3.1.0"
pyshp = "^2.3.1"
shapely = "^2.0.2"
[tool.poetry.group.dev.dependencies]
black = "^23.12.0"
flake8 = "isort" ##### <---- Here's the problem
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment