Skip to content

Commit

Permalink
update pyproject to make package installable
Browse files Browse the repository at this point in the history
  • Loading branch information
nllong committed Apr 21, 2024
1 parent 13f1068 commit 2bcc2b5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
"language": "en",
"words": [
"autoload",
"geodataframe",
"quadkey",
"quadkeys",
"streetaddress",
"subaddress",
"tqdm",
"UBID",
"usaddress",
"ZZYYY"
],
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ __pycache__
.python-version
.ruff_cache

dist

/data/
/locations.json
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ version = "0.1.0"
description = ""
authors = ["Alex Swindler <[email protected]>", "Nicholas Long <[email protected]>"]
readme = "README.md"
# should probably rename utils to cbl_workflow, then place
# the utils in that folder.
packages = [{include = "utils"}]

[tool.poetry.dependencies]
python = ">=3.9, <3.13"
Expand All @@ -22,7 +25,8 @@ setuptools = "^69.2.0"
pre-commit = "^3.7.0"

[build-system]
requires = ["poetry-core"]
# Need to provide the build system information for the package to be built
requires = ["poetry-core", "setuptools", "wheel"]
build-backend = "poetry.core.masonry.api"

# https://docs.astral.sh/ruff/tutorial/#configuration
Expand Down

0 comments on commit 2bcc2b5

Please sign in to comment.