ONE-api 2.11.2__tar.gz → 3.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. {one_api-2.11.2 → one_api-3.0.0/ONE_api.egg-info}/PKG-INFO +12 -8
  2. {one_api-2.11.2 → one_api-3.0.0}/ONE_api.egg-info/SOURCES.txt +2 -2
  3. {one_api-2.11.2 → one_api-3.0.0}/ONE_api.egg-info/requires.txt +2 -2
  4. {one_api-2.11.2/ONE_api.egg-info → one_api-3.0.0}/PKG-INFO +12 -8
  5. {one_api-2.11.2 → one_api-3.0.0}/README.md +2 -2
  6. {one_api-2.11.2 → one_api-3.0.0}/one/__init__.py +1 -1
  7. {one_api-2.11.2 → one_api-3.0.0}/one/alf/__init__.py +1 -1
  8. one_api-3.0.0/one/alf/cache.py +640 -0
  9. {one_api-2.11.2 → one_api-3.0.0}/one/alf/exceptions.py +21 -5
  10. {one_api-2.11.2 → one_api-3.0.0}/one/alf/io.py +103 -145
  11. one_api-3.0.0/one/alf/path.py +1450 -0
  12. {one_api-2.11.2 → one_api-3.0.0}/one/alf/spec.py +48 -24
  13. {one_api-2.11.2 → one_api-3.0.0}/one/api.py +544 -461
  14. {one_api-2.11.2 → one_api-3.0.0}/one/converters.py +208 -98
  15. {one_api-2.11.2 → one_api-3.0.0}/one/params.py +67 -27
  16. {one_api-2.11.2 → one_api-3.0.0}/one/registration.py +44 -44
  17. {one_api-2.11.2 → one_api-3.0.0}/one/remote/aws.py +23 -21
  18. {one_api-2.11.2 → one_api-3.0.0}/one/remote/base.py +9 -6
  19. {one_api-2.11.2 → one_api-3.0.0}/one/remote/globus.py +60 -97
  20. {one_api-2.11.2 → one_api-3.0.0}/one/util.py +49 -211
  21. {one_api-2.11.2 → one_api-3.0.0}/one/webclient.py +167 -77
  22. one_api-3.0.0/pyproject.toml +40 -0
  23. one_api-3.0.0/requirements.txt +9 -0
  24. one_api-2.11.2/one/alf/cache.py +0 -340
  25. one_api-2.11.2/one/alf/files.py +0 -11
  26. one_api-2.11.2/one/alf/path.py +0 -513
  27. one_api-2.11.2/setup.py +0 -52
  28. {one_api-2.11.2 → one_api-3.0.0}/LICENSE +0 -0
  29. {one_api-2.11.2 → one_api-3.0.0}/MANIFEST.in +0 -0
  30. {one_api-2.11.2 → one_api-3.0.0}/ONE_api.egg-info/dependency_links.txt +0 -0
  31. {one_api-2.11.2 → one_api-3.0.0}/ONE_api.egg-info/top_level.txt +0 -0
  32. {one_api-2.11.2 → one_api-3.0.0}/one/remote/__init__.py +0 -0
  33. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/datasets.pqt +0 -0
  34. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/params/.caches +0 -0
  35. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/params/.test.alyx.internationalbrainlab.org +0 -0
  36. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/rest_responses/1f187d80fd59677b395fcdb18e68e4401bfa1cc9 +0 -0
  37. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/rest_responses/3f51aa2e0baa42438467906f56a457c91a221898 +0 -0
  38. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/rest_responses/47893cf67c985e6361cdee009334963f49fb0746 +0 -0
  39. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/rest_responses/535d0e9a1e2c1efbdeba0d673b131e00361a2edb +0 -0
  40. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/rest_responses/5618bea3484a52cd893616f07903f0e49e023ba1 +0 -0
  41. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/rest_responses/6dc96f7e9bcc6ac2e7581489b9580a6cd3f28293 +0 -0
  42. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/rest_responses/db1731fb8df0208944ae85f76718430813a8bf50 +0 -0
  43. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/rest_responses/dcce48259bb929661f60a02a48563f70aa6185b3 +0 -0
  44. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/rest_responses/f530d6022f61cdc9e38cc66beb3cb71f3003c9a1 +0 -0
  45. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/sessions.pqt +0 -0
  46. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/test_dbs.json +0 -0
  47. {one_api-2.11.2 → one_api-3.0.0}/one/tests/fixtures/test_img.png +0 -0
  48. {one_api-2.11.2 → one_api-3.0.0}/setup.cfg +0 -0
@@ -1,19 +1,23 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: ONE-api
3
- Version: 2.11.2
3
+ Version: 3.0.0
4
4
  Summary: Open Neurophysiology Environment
5
- Home-page: https://github.com/int-brain-lab/ONE
6
5
  Author: IBL Staff
7
6
  License: MIT
8
- Requires-Python: >=3.7
7
+ Project-URL: Homepage, https://github.com/int-brain-lab/ONE
8
+ Project-URL: Documentation, https://one.internationalbrainlab.org
9
+ Project-URL: Repository, https://github.com/int-brain-lab/ONE.git
10
+ Project-URL: Issues, https://github.com/int-brain-lab/ONE/issues
11
+ Project-URL: Changelog, https://github.com/int-brain-lab/ONE/blob/main/CHANGELOG.md
12
+ Requires-Python: >=3.10
9
13
  Description-Content-Type: text/markdown
10
14
  License-File: LICENSE
11
- Requires-Dist: flake8>=3.7.8
15
+ Requires-Dist: ruff
12
16
  Requires-Dist: numpy>=1.18
13
17
  Requires-Dist: pandas>=1.5.0
14
18
  Requires-Dist: tqdm>=4.32.1
15
19
  Requires-Dist: requests>=2.22.0
16
- Requires-Dist: iblutil>=1.13.0
20
+ Requires-Dist: iblutil>=1.14.0
17
21
  Requires-Dist: packaging
18
22
  Requires-Dist: boto3
19
23
  Requires-Dist: pyyaml
@@ -26,10 +30,10 @@ The Open Neurophysiology Environment is a scheme for sharing neurophysiology dat
26
30
 
27
31
  Please [Click here](https://int-brain-lab.github.io/ONE/) for the main documentation page. For a quick primer on the file naming convention we use, [click here](https://github.com/int-brain-lab/ONE/blob/main/docs/Open_Neurophysiology_Environment_Filename_Convention.pdf).
28
32
 
29
- **NB**: The API and backend database are still under active development, for the best experience please regularly update the package by running `pip install -U ONE-api`.
33
+ **NB**: The API and backend database are still under active development, for the best experience please regularly update the package by running `pip install -U ONE-api`.
30
34
 
31
35
  ## Requirements
32
- ONE runs on Python 3.8 or later, and is tested on the latest Ubuntu and Windows (3.8 and 3.11 only).
36
+ ONE runs on Python 3.10 or later, and is tested on the latest Ubuntu and Windows (3.10 and 3.12 only).
33
37
 
34
38
  ## Installing
35
39
  Installing the package via pip typically takes a few seconds. To install, run
@@ -1,7 +1,8 @@
1
1
  LICENSE
2
2
  MANIFEST.in
3
3
  README.md
4
- setup.py
4
+ pyproject.toml
5
+ requirements.txt
5
6
  ONE_api.egg-info/PKG-INFO
6
7
  ONE_api.egg-info/SOURCES.txt
7
8
  ONE_api.egg-info/dependency_links.txt
@@ -17,7 +18,6 @@ one/webclient.py
17
18
  one/alf/__init__.py
18
19
  one/alf/cache.py
19
20
  one/alf/exceptions.py
20
- one/alf/files.py
21
21
  one/alf/io.py
22
22
  one/alf/path.py
23
23
  one/alf/spec.py
@@ -1,9 +1,9 @@
1
- flake8>=3.7.8
1
+ ruff
2
2
  numpy>=1.18
3
3
  pandas>=1.5.0
4
4
  tqdm>=4.32.1
5
5
  requests>=2.22.0
6
- iblutil>=1.13.0
6
+ iblutil>=1.14.0
7
7
  packaging
8
8
  boto3
9
9
  pyyaml
@@ -1,19 +1,23 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: ONE-api
3
- Version: 2.11.2
3
+ Version: 3.0.0
4
4
  Summary: Open Neurophysiology Environment
5
- Home-page: https://github.com/int-brain-lab/ONE
6
5
  Author: IBL Staff
7
6
  License: MIT
8
- Requires-Python: >=3.7
7
+ Project-URL: Homepage, https://github.com/int-brain-lab/ONE
8
+ Project-URL: Documentation, https://one.internationalbrainlab.org
9
+ Project-URL: Repository, https://github.com/int-brain-lab/ONE.git
10
+ Project-URL: Issues, https://github.com/int-brain-lab/ONE/issues
11
+ Project-URL: Changelog, https://github.com/int-brain-lab/ONE/blob/main/CHANGELOG.md
12
+ Requires-Python: >=3.10
9
13
  Description-Content-Type: text/markdown
10
14
  License-File: LICENSE
11
- Requires-Dist: flake8>=3.7.8
15
+ Requires-Dist: ruff
12
16
  Requires-Dist: numpy>=1.18
13
17
  Requires-Dist: pandas>=1.5.0
14
18
  Requires-Dist: tqdm>=4.32.1
15
19
  Requires-Dist: requests>=2.22.0
16
- Requires-Dist: iblutil>=1.13.0
20
+ Requires-Dist: iblutil>=1.14.0
17
21
  Requires-Dist: packaging
18
22
  Requires-Dist: boto3
19
23
  Requires-Dist: pyyaml
@@ -26,10 +30,10 @@ The Open Neurophysiology Environment is a scheme for sharing neurophysiology dat
26
30
 
27
31
  Please [Click here](https://int-brain-lab.github.io/ONE/) for the main documentation page. For a quick primer on the file naming convention we use, [click here](https://github.com/int-brain-lab/ONE/blob/main/docs/Open_Neurophysiology_Environment_Filename_Convention.pdf).
28
32
 
29
- **NB**: The API and backend database are still under active development, for the best experience please regularly update the package by running `pip install -U ONE-api`.
33
+ **NB**: The API and backend database are still under active development, for the best experience please regularly update the package by running `pip install -U ONE-api`.
30
34
 
31
35
  ## Requirements
32
- ONE runs on Python 3.8 or later, and is tested on the latest Ubuntu and Windows (3.8 and 3.11 only).
36
+ ONE runs on Python 3.10 or later, and is tested on the latest Ubuntu and Windows (3.10 and 3.12 only).
33
37
 
34
38
  ## Installing
35
39
  Installing the package via pip typically takes a few seconds. To install, run
@@ -6,10 +6,10 @@ The Open Neurophysiology Environment is a scheme for sharing neurophysiology dat
6
6
 
7
7
  Please [Click here](https://int-brain-lab.github.io/ONE/) for the main documentation page. For a quick primer on the file naming convention we use, [click here](https://github.com/int-brain-lab/ONE/blob/main/docs/Open_Neurophysiology_Environment_Filename_Convention.pdf).
8
8
 
9
- **NB**: The API and backend database are still under active development, for the best experience please regularly update the package by running `pip install -U ONE-api`.
9
+ **NB**: The API and backend database are still under active development, for the best experience please regularly update the package by running `pip install -U ONE-api`.
10
10
 
11
11
  ## Requirements
12
- ONE runs on Python 3.8 or later, and is tested on the latest Ubuntu and Windows (3.8 and 3.11 only).
12
+ ONE runs on Python 3.10 or later, and is tested on the latest Ubuntu and Windows (3.10 and 3.12 only).
13
13
 
14
14
  ## Installing
15
15
  Installing the package via pip typically takes a few seconds. To install, run
@@ -1,2 +1,2 @@
1
1
  """The Open Neurophysiology Environment (ONE) API."""
2
- __version__ = '2.11.2'
2
+ __version__ = '3.0.0'
@@ -1 +1 @@
1
- """Constructing, parsing, validating and loading ALyx Files (ALF)"""
1
+ """Constructing, parsing, validating and loading ALyx Files (ALF)."""