-
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.
Add pyproject.toml and update URL in setup.py
Introduce `pyproject.toml` for project configuration and dependency management. Correct the URL in `setup.py` to accurately reflect the repository's homepage for `ssalib`.
- Loading branch information
1 parent
71c8f89
commit 214293e
Showing
2 changed files
with
51 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "ssalib" | ||
version = "0.1.0a1" | ||
description = "Singular Spectrum Analysis Library (SSALib)" | ||
readme = "README.md" | ||
readme-content-type = "text/markdown" | ||
requires-python = ">=3.9" | ||
license = {text = "BSD-3-Clause"} | ||
authors = [ | ||
{name = "Damien Delforge", email = "damien.delforge@adscian.be"}, | ||
{name = "Alice Alonso"} | ||
] | ||
urls = {homepage = "https://github.com/ADSCIAN/ssalib"} | ||
|
||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: BSD 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", | ||
"Topic :: Scientific/Engineering" | ||
] | ||
|
||
keywords = ["singular spectrum analysis", "time series", "decomposition"] | ||
|
||
[project.dependencies] | ||
joblib = "*" | ||
numpy = "*" | ||
matplotlib = "*" | ||
pandas = "*" | ||
scipy = "*" | ||
scikit-learn = "*" | ||
statsmodels = "*" | ||
|
||
[project.optional-dependencies] | ||
test = ["pytest", "pytest-cov"] | ||
dev = ["pytest", "pytest-cov", "black", "flake8"] | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[tool.setuptools.package-data] | ||
"ssalib" = ["datasets/*.txt", "datasets/*.csv", "datasets/*.json"] |
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