-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 878 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 878 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
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "cursor-study"
version = "0.1.0"
authors = []
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^1.26.0"
pandas = "^2.1.0"
matplotlib = "^3.8.0"
jupyter = "^1.1.1"
jupyterlab = "^4.3.6"
PyGithub = "^2.1.1"
python-dotenv = "^1.0.0"
gitpython = "^3.1.44"
db-dtypes = "^1.4.2"
google-cloud-bigquery = "^3.31.0"
google-cloud-bigquery-storage = "^2.30.0"
seaborn = "^0.13.2"
scikit-learn = "^1.6.1"
gql = {extras = ["all"], version = "^3.5.2"}
semver = "^3.0.4"
node-semver = "^0.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^23.7.0"
isort = "^5.12.0"
pre-commit = "^3.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py311']
include = '\.pyi?$'
[tool.isort]
profile = "black"
multi_line_output = 3