-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd693ed
commit e825f97
Showing
9 changed files
with
107 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,50 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel", | ||
"oldest-supported-numpy" | ||
requires = ["setuptools>=45", "wheel", "numpy>=2"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "kastore" | ||
dynamic = ["version"] | ||
authors = [ | ||
{name = "Tskit Developers", email = "admin@tskit.dev"}, | ||
] | ||
build-backend = "setuptools.build_meta" | ||
description = "A write-once-read-many store for simple numerical data" | ||
readme = "README.md" | ||
license = {text = "MIT"} | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3 :: Only", | ||
] | ||
keywords = ["binary store", "numerical", "arrays"] | ||
dependencies = [ | ||
"numpy>=1.7", | ||
"humanize", | ||
] | ||
requires-python = ">=3.9" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/tskit-dev/kastore" | ||
Documentation = "https://kastore.readthedocs.io/en/latest/" | ||
Changelog = "https://kastore.readthedocs.io/en/latest/changelogs.html" | ||
"Bug Tracker" = "https://github.com/tskit-dev/kastore/issues" | ||
GitHub = "https://github.com/tskit-dev/kastore" | ||
|
||
[project.scripts] | ||
kastore = "kastore.__main__:main" | ||
|
||
[tool.setuptools] | ||
packages = ["kastore"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "kastore._version.kastore_version"} | ||
|
||
[tool.pytest.ini_options] | ||
testpaths = ["tests"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
attrs | ||
build | ||
hypothesis | ||
humanize | ||
pytest | ||
pytest-cov | ||
numpy | ||
mock | ||
setuptools |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.