Skip to content

Commit

Permalink
Rebase for v3 release; added URLs; exclude tests from build
Browse files Browse the repository at this point in the history
  • Loading branch information
k1o0 committed Nov 8, 2024
1 parent ca79008 commit a104c10
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ This version drops support for python 3.9 and below, and ONE is now in remote mo

- one.alf.cache.remove_cache_table_files and One.\_remove_cache_table_files for deleting cache table files
- one.alf.cache.EMPTY_DATASETS_FRAME and EMPTY_SESSION_FRAME vars for table column, index, and dtype template
- pyproject.toml replaces deprecated setup file

### Removed

- setup.py

## [2.11.1]

Expand Down
12 changes: 10 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,21 @@ description = "Open Neurophysiology Environment"
authors = [
{name = "IBL Staff"},
]
requires-python = ">=3.7"
requires-python = ">=3.10"
license = {text = "MIT"}

[project.urls]
Homepage = "https://github.com/int-brain-lab/ONE"
Documentation = "https://one.internationalbrainlab.org"
Repository = "https://github.com/int-brain-lab/ONE.git"
Issues = "https://github.com/int-brain-lab/ONE/issues"
Changelog = "https://github.com/int-brain-lab/ONE/blob/main/CHANGELOG.md"

[tool.setuptools.dynamic]
version = {attr = "one.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
dependencies = {file = ["requirements.txt"]}
dependencies = {file = ["requirements.txt"]}

[tool.setuptools.packages.find]
include = ["one*"]
exclude = ["one.tests*"]

0 comments on commit a104c10

Please sign in to comment.