Skip to content

Commit 0d3c5e4

Browse files
committed
add poetry to project
Signed-off-by: Isaac Milarsky <[email protected]>
1 parent 379b2a2 commit 0d3c5e4

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#pycache
22
__pycache__/
33
*.pyc
4-
4+
.venv/

pyproject.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[tool.poetry]
2+
name = "codejson-index-generator"
3+
version = "1.0.0"
4+
description = "Script to create an indexed code.json for agencies."
5+
authors = ["Sachin Panyil <[email protected]>"]
6+
license = "CC0 1.0"
7+
readme = "README.md"
8+
9+
[tool.poetry.dependencies]
10+
python = "^3.13"
11+
pygithub = ">=1.59,<2.0"
12+
13+
14+
[build-system]
15+
requires = ["poetry-core"]
16+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)