15 lines
397 B
Python
15 lines
397 B
Python
|
py_project(
|
||
|
name = "pelorama_relay",
|
||
|
lib_deps = [
|
||
|
py_requirement("aiohttp"),
|
||
|
py_requirement("async_lru"),
|
||
|
py_requirement("cachetools"),
|
||
|
py_requirement("click"),
|
||
|
py_requirement("pycryptodome"),
|
||
|
py_requirement("pyyaml"),
|
||
|
py_requirement("retry"),
|
||
|
],
|
||
|
main = "src/python/relay/__main__.py",
|
||
|
shebang = "/usr/bin/env python3"
|
||
|
)
|