-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.16 KB
/
pyproject.toml
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
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "brainscore-brainio"
version = "1.1.0"
description = "Data management for quantitative comparison of brains and brain-inspired systems"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Jon Prescott-Roy", email = "jjpr@mit.edu"},
{name = "Martin Schrimpf", email = "mschrimpf@mit.edu"},
]
license = {text = "MIT license"}
keywords = ["BrainIO"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.11",
]
urls = { Homepage = "https://github.com/brain-score/brainio" }
dependencies = [
"six",
"boto3",
"tqdm",
"Pillow",
"entrypoints",
"numpy",
"pandas",
"xarray<2022.6", # groupby bug was introduced in index refactor: https://github.com/pydata/xarray/issues/6836
"netcdf4",
]
[project.optional-dependencies]
tests = [
"pytest",
"imageio",
"moto",
]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests", "brainio-test"]