forked from tskit-dev/tskit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change build-time dependency to numpy 2, Drop Python 3.8, add 3.12, A…
…dd pyproject.toml
- Loading branch information
1 parent
f467db6
commit ffead55
Showing
31 changed files
with
200 additions
and
268 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
PYTHON_VERSIONS=( | ||
cp312-cp312 | ||
cp311-cp311 | ||
cp310-cp310 | ||
cp39-cp39 | ||
cp38-cp38 | ||
) |
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
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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
[build-system] | ||
requires = ["setuptools>=45", "wheel", "numpy>=2.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "tskit" | ||
dynamic = ["version"] | ||
authors = [ | ||
{name = "Tskit Developers", email = "admin@tskit.dev"}, | ||
] | ||
description = "The tree sequence toolkit." | ||
readme = "README.rst" | ||
license = {text = "MIT"} | ||
classifiers = [ | ||
"Programming Language :: C", | ||
"Programming Language :: Python", | ||
"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", | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Other Environment", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: POSIX", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Bio-Informatics", | ||
] | ||
keywords = [ | ||
"population genetics", | ||
"tree sequence", | ||
"ancestral recombination graph", | ||
"evolutionary tree", | ||
"statistical genetics", | ||
"phylogenetics", | ||
"tskit", | ||
] | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
"jsonschema>=3.0.0", | ||
"numpy>=1.23.5", | ||
"svgwrite>=1.1.10", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://tskit.dev/tskit" | ||
Documentation = "https://tskit.dev/tskit/docs/stable" | ||
Changelog = "https://tskit.dev/tskit/docs/stable/changelogs.html" | ||
"Bug Tracker" = "https://github.com/tskit-dev/tskit/issues" | ||
GitHub = "https://github.com/tskit-dev/tskit/" | ||
|
||
[project.scripts] | ||
tskit = "tskit.cli:tskit_main" | ||
|
||
[tool.setuptools] | ||
packages = ["tskit"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "tskit._version.tskit_version"} | ||
|
||
[tool.pytest.ini_options] | ||
addopts = "-n 4" | ||
testpaths = ["tests"] |
Oops, something went wrong.