Skip to content

Commit

Permalink
Merge pull request #2 from alonfnt/python-package
Browse files Browse the repository at this point in the history
add a pyproject file to create the package
  • Loading branch information
alonfnt committed May 29, 2023
2 parents bbcd4a3 + 48ceeef commit de2816b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pyproject.toml
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"

0 comments on commit de2816b

Please sign in to comment.