1234567891011121314151617181920212223242526272829 |
- [tool.poetry]
- name = "ob-jobs"
- version = "0.1.0"
- description = ""
- authors = ["liubing <bing.liu@cestong.com>"]
- readme = "README.md"
- packages = [{include = "ob_jobs"}]
- [tool.poetry.dependencies]
- python = "^3.10"
- apache-flink = "1.17.*"
- google-cloud-bigquery-storage = "^2.24.0"
- matplotlib = "^3.8.3"
- jinja2 = "^3.1.3"
- md2pdf = "^1.0.1"
- sqlglot = {extras = ["rs"], version = "^21.2.0"}
- [tool.poetry.group.dev.dependencies]
- jupyter = "^1.0.0"
- [build-system]
- requires = ["poetry-core"]
- build-backend = "poetry.core.masonry.api"
- [[tool.poetry.source]]
- name = "tsinghua"
- url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
- priority = "default"
|