-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
53 lines (51 loc) · 1.19 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[project]
name = "neynar-parquet-importer"
version = "0.3.0"
description = "Import Neynar's parquet files into a Postgres database"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"asttokens==2.4.1",
"boto3==1.35.11",
"botocore==1.35.11",
"datadog>=0.50.2",
"decorator==5.1.1",
"executing==2.1.0",
"ipdb==0.13.13",
"ipython==8.27.0",
"jedi==0.19.1",
"jmespath==1.0.1",
"markdown-it-py==3.0.0",
"matplotlib-inline==0.1.7",
"mdurl==0.1.2",
"numpy==2.1.1",
"parso==0.8.4",
"pexpect==4.9.0",
"prompt-toolkit==3.0.47",
"psycopg>=3.2.3",
"ptyprocess==0.7.0",
"pure-eval==0.2.3",
"pyarrow==17.0.0",
"pydantic-settings>=2.6.1",
"pygments==2.18.0",
"python-dateutil==2.9.0.post0",
"python-dotenv>=1.0.1",
"python-json-logger>=2.0.7",
"rich==13.8.0",
"s3transfer==0.10.2",
"six==1.16.0",
"sqlalchemy==2.0.33",
"stack-data==0.6.3",
"tenacity>=9.0.0",
"traitlets==5.14.3",
"typing-extensions==4.12.2",
"urllib3==2.2.2",
"wcwidth==0.2.13",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"ruff>=0.6.2",
]