Created
December 15, 2023 13:02
-
-
Save nk9/4fa6fe37487d50308deacd425c8ade16 to your computer and use it in GitHub Desktop.
This file contains hidden or 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.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