-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a pyproject file to create the package
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pcax" | ||
version = "0.1.0" | ||
description = "Minimal Principal Component Analysis (PCA) implementation using JAX." | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
authors = [ | ||
{name = "Albert Alonso", email = "[email protected]"}, | ||
] | ||
license = {file = "LICENSE"} | ||
keywords = ["jax", "pca", "machine-learning"] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/alonfnt/pcax" | ||
"Documentation" = "https://github.com/alonfnt/pcax" | ||
"Source" = "https://github.com/alonfnt/pcax" | ||
"Bug Tracker" = "https://github.com/alonfnt/pcax/issues" |