ot-in-linear-ica / pyproject.toml
pyproject.toml
Raw
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "wasserstein-ica"
version = "0.1.0"
description = "Independent Component Analysis via Wasserstein Distance Maximization"
readme = "README.md"
requires-python = ">=3.8"
authors = [
  { name = "Your Name", email = "your.email@example.com" },
]
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
    "numpy",
    "torch>=1.10.0",
    "scipy",
    "matplotlib",  
    "pot",         
    "scikit-learn",
    "pandas",
    "seaborn",
    "tqdm",
    "joblib",
    "jupyter",
    "ipykernel",
    "mne"
]

[project.urls]
"Homepage" = "https://github.com/ashutoshjha3103/OT_IN_LINEAR_ICA"
"Bug Tracker" = "https://github.com/ashutoshjha3103/OT_IN_LINEAR_ICA/issues"