forked from warproxxx/poly_data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 724 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 724 Bytes
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
[project]
name = "poly-data"
version = "0.1.0"
description = "A comprehensive data pipeline for fetching, processing, and analyzing Polymarket trading data"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "Warproxxx", email = "" }
]
dependencies = [
"pandas>=2.0.0",
"polars>=0.19.0",
"requests>=2.31.0",
"gql[requests]>=3.4.0",
"flatten-json>=0.1.13",
]
[project.optional-dependencies]
dev = [
"jupyter>=1.0.0",
"notebook>=7.0.0",
"ipykernel>=6.25.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["poly_utils", "update_utils"]
[tool.uv]
dev-dependencies = []