-
Notifications
You must be signed in to change notification settings - Fork 70
/
pyproject.toml
39 lines (36 loc) · 1011 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "tools"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
packages = [
{ include = "tools/payout_calc" },
{ include = "tools/article_checker" },
{ include = "tools/market_health_reporter" },
{ include = "tools/python_modules" }
]
[tool.poetry.dependencies]
python = ">=3.8, <4"
PyGithub = "^1.58.2"
requests = "^2.32.0"
duckduckgo-search = "^3.1.1"
openai = "^0.27.7"
tiktoken = "^0.4.0"
pyyaml = "^6.0.1"
pylanguagetool = "^0.9.2"
markdown2 = "^2.4.10"
bs4 = "^0.0.1"
anthropic = "^0.25.1"
tenacity = "^8.2.3"
matplotlib = "3.6.0"
pandas = "2.0.1"
bleach = "^6.1.0"
[tool.poetry.scripts]
payout-calc = "tools.payout_calc.payout_calc:main"
article-check-claude = "tools.article_checker.article_checker_claude:main"
duplication-check = "tools.article_checker.duplication_checker:main"
market-health-reporter = "tools.market_health_reporter.market_health_reporter:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"