Skip to content

Commit 41773a1

Browse files
committed
feat: global venv and dockerfile
1 parent d0e5cbd commit 41773a1

6 files changed

Lines changed: 3047 additions & 11 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ src/neo4j-quickstart/local_test.py
66

77
# Any env files anywhere in sub repositories
88
*.env
9+
*quickstart.egg-info
910

1011
# Python related files
1112
__pycache__/

src/neo4j-quickstart/.python-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/pyproject.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[project]
2+
name = "quickstart"
3+
version = "0.1.0"
4+
description = "Unified environment for all quickstarts"
5+
requires-python = ">=3.10"
6+
7+
# Include submodules and global tools
8+
#TO-DO any more elegant way to do so?
9+
dependencies = [
10+
#neo4j
11+
"adjusttext>=1.3.0",
12+
"dotenv>=0.9.9",
13+
"matplotlib>=3.10.7",
14+
"neo4j>=6.0.2",
15+
"networkx>=3.4.2",
16+
"numpy>=2.2.6",
17+
"pandas>=2.3.3",
18+
"pydantic>=2.12.1",
19+
20+
"jupyterlab",
21+
"ipykernel",
22+
"black",
23+
"ruff",
24+
]
25+
26+
[dependency-groups]
27+
dev = [
28+
"ipykernel>=7.0.1",
29+
]

0 commit comments

Comments
 (0)