-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1023 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "convergence"
version = "0.1.0"
description = "Utility package for RSA and alignment analyses"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Pablo Marcos-Manchón", email = "pmarcos@ub.edu" }
]
maintainers = [
{ name = "Pablo Marcos-Manchón", email = "pmarcos@ub.edu" }
]
keywords = [
"rsa",
"cka",
"neuroimaging",
"representational-similarity",
"machine-learning"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Image Recognition",
]
[project.urls]
repository = "https://github.com/memory-formation/convergent-transformations"
homepage = "https://arxiv.org/abs/2507.13941"
[tool.setuptools.packages.find]
include = ["convergence*"]