revisit 0.0.22__tar.gz → 0.0.24__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,16 @@
1
+ node_modules
2
+ .venv
3
+ dist
4
+ .DS_Store
5
+
6
+ # Python
7
+ __pycache__
8
+ .ipynb_checkpoints
9
+
10
+ src/revisit/static
11
+
12
+ # Ignoring all scripts except for single test_script
13
+ scripts/*
14
+ !scripts/test_script.py
15
+ !scripts/test_script.ipynb
16
+ !scripts/
@@ -1,13 +1,13 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: revisit
3
- Version: 0.0.22
4
- Description-Content-Type: text/markdown
3
+ Version: 0.0.24
5
4
  Requires-Dist: anywidget
6
- Requires-Dist: pydantic>=2.10.5
7
5
  Requires-Dist: pandas
6
+ Requires-Dist: pydantic>=2.10.5
8
7
  Provides-Extra: dev
9
- Requires-Dist: watchfiles; extra == "dev"
10
- Requires-Dist: jupyterlab; extra == "dev"
8
+ Requires-Dist: jupyterlab; extra == 'dev'
9
+ Requires-Dist: watchfiles; extra == 'dev'
10
+ Description-Content-Type: text/markdown
11
11
 
12
12
  # revisit
13
13
 
@@ -286,4 +286,4 @@ datamodel-codegen --input src/revisit/StudyConfigSchema.json --output src/revisi
286
286
  ```bash
287
287
  cd revisit-py
288
288
  python -m unittest tests.test_module_one
289
- ```
289
+ ```
@@ -1,10 +1,10 @@
1
1
  [build-system]
2
- requires = ["setuptools", "wheel"] # Use setuptools for builds
3
- build-backend = "setuptools.build_meta"
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "revisit"
7
- version = "0.0.22"
7
+ version = "0.0.24"
8
8
  dependencies = [
9
9
  "anywidget",
10
10
  "pydantic>=2.10.5",
@@ -27,7 +27,7 @@ dev = ["watchfiles", "jupyterlab"]
27
27
  [tool.hatch.build]
28
28
  only-packages = true
29
29
  artifacts = ["src/revisit/static/*"]
30
- exclude = ["tests", "js"]
30
+ exclude = ["tests", "scripts"]
31
31
 
32
32
 
33
33
  [tool.hatch.build.hooks.jupyter-builder]