-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
38 lines (32 loc) · 1.13 KB
/
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
[tool.poetry]
name = "scraper"
version = "0.1.0"
description = "Scraper is designed to automate the process of gathering information from a variety of key Bitcoin-related sources. It leverages GitHub Actions to schedule nightly cron jobs, ensuring that the most up-to-date content is captured from each source according to a defined frequency. The scraped data are then stored in an Elasticsearch index."
authors = ["kouloumos <[email protected]>", "urvish patel <[email protected]>"]
readme = "README.md"
packages = [{include = "scraper"}]
[tool.poetry.dependencies]
python = ">=3.11,<3.13"
click = "^8.1.7"
pyyaml = "^6.0.2"
elasticsearch = "^8.15.0"
pydantic = "^2.9.1"
gitpython = "^3.1.43"
loguru = "^0.7.2"
python-dotenv = "^1.0.1"
aiohttp = "^3.10.5"
scrapy = "^2.11.2"
openai = "^1.52.2"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.1.1"
pandas = "^2.2.3"
matplotlib = "^3.9.2"
tabulate = "^0.9.0"
seaborn = "^0.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
scraper = "scraper.cli:cli"
playground = "scraper.run_jupyter:main"
notebook = "scraper.run_jupyter:main"