-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
43 lines (38 loc) · 1.09 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
[project]
name = "psifr"
version = "0.9.2"
authors = [
{name = "Neal W Morton", email = "mortonne@gmail.com"}
]
description = "Psifr: Analysis and visualization of free recall data"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["psychology", "memory", "free recall"]
license = {text = "GPL-3.0-or-later"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"scipy",
"pandas>=1.0.0, <2.2.0",
"matplotlib!=3.3.1",
"seaborn>=0.9.2",
]
[project.optional-dependencies]
docs = ["sphinx", "pydata-sphinx-theme", "ipython", "sphinxcontrib-bibtex", "pickleshare"]
test = ["pytest", "codecov", "pytest-cov"]
perf = ["snakeviz", "asv"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools.package-data]
"psifr.data" = ["*.csv"]
"psifr.distances" = ["*.npz"]