-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
72 lines (64 loc) · 1.63 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pixelmap"
dynamic = ["version"]
description = "Browser-based Neuropixels channelmap generator."
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ['LICENSE.txt']
authors = [
{name = "Maxime Beau", email = "maxime@princeton.edu"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10"
dependencies = [
"panel>=1.3.0",
"matplotlib>=3.7.0",
"numpy>=1.24.0",
"pandas>=2.0.0",
"param>=1.13.0",
"bokeh>=3.0.0",
"dotenv>=0.9.9",
"psutil>=7.1.0",
]
[project.gui-scripts]
pixelmap = "pixelmap.gui.app_util:main"
[project.urls]
Homepage = "https://github.com/m-beau/pixelmap"
Documentation = "https://pixelmap.readthedocs.io"
Repository = "https://github.com/m-beau/pixelmap"
Issues = "https://github.com/m-beau/pixelmap/issues"
[tool.setuptools.dynamic]
version = {attr = "pixelmap.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["pixelmap*"]
[tool.setuptools.package-data]
pixelmap = [
"wiring_maps/*.csv",
"gui/*/*.png",
"gui/*/*.svg",
"example_layouts/*.pdf",
]
[project.optional-dependencies]
docs = [
"sphinx>=7.0",
"furo",
"myst-parser",
"sphinx-design",
]
[dependency-groups]
dev = [
"pytest>=8.4.1",
]