-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
72 lines (62 loc) · 1.61 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "curator"
version = "1.0.6"
description = "Package for curating historical market data from Polygon.io to backfill into a postgres database"
authors = [{name="Jody Hirschi", email="jody@heylittlejohn.com"}]
requires-python = ">=3.11"
readme = "README.md"
dependencies = [
"aiomultiprocess",
"requests >=2.28.2",
"types-requests >=2.28.11.8",
"aiohttp >=3.8.4",
"sentry-sdk >=1.16.0",
"uvloop >=0.18.0",
"pandas-market-calendars >=4.1.4",
"scikit-learn >=1.3.0",
"typer >=0.12.0",
"polygon-api-client >=1.14.2",
"pydantic >=2.4.2",
"sqlalchemy >=2.0.0",
"pandas >=2.2.2",
"psycopg >=3.1.8",
"alembic >=1.9.2",
"zstandard>=0.25.0",
]
[project.scripts]
curator = "curator.data_pipeline.main:app"
[tool.uv.sources]
aiomultiprocess = { git = "https://github.com/jhirschibar/aiomultiprocess.git", tag = "1.0.0" }
[dependency-groups]
dev = [
"pre-commit >=3.0.4",
"ipython >=8.14.0",
"ipykernel >=6.26.0",
"ruff >=0.9.8",
"ty>=0.0.15",
]
[tool.ruff]
fix = true
line-length = 120
exclude = ["alembic"]
[tool.ruff.lint]
select = ["E", "F", "I", "B","TID252", "NPY201", "C901"]
task-tags = ["TODO", "NOTE"]
[tool.ruff.lint.pycodestyle]
ignore-overlong-task-comments = true
[tool.ruff.lint.mccabe]
max-complexity = 20
[tool.ruff.lint.flake8-bugbear]
extend-immutable-calls = [
"typer.Argument",
"typer.Option",
"typer.models.OptionInfo",
"typer.models.ArgumentInfo"
]
[tool.ruff.format]
line-ending = "auto"
quote-style = "double"
indent-style = "space"