source/projects/gh-unnotifier/BUILD.bazel

10 lines
214 B
Python
Raw Normal View History

2023-07-27 22:34:26 +00:00
py_project(
name = "gh-unnotifier",
2024-02-06 18:18:33 +00:00
main = "src/ghunnotif/__main__.py",
2023-07-27 22:34:26 +00:00
main_deps = [
py_requirement("click"),
py_requirement("requests"),
py_requirement("pytimeparse"),
]
)