-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 1.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "oursin"
dynamic = ["version"]
description = 'Urchin - Universal Renderer Creating Helpful Images for Neuroscience Python API'
readme = "README.md"
requires-python = ">=3.8, <3.13"
license = "MIT"
keywords = ["virtualbrainlab", "neuroscience", "renderer"]
authors = [
{ name = "Daniel Birman", email = "dbirman@uw.edu" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
dependencies = [
"pydantic>=2.7.0",
"python-socketio[client]>=5.8, <5.12",
"numpy>=1.23.3, <2.3.0",
"Pillow>=10.4.0, <10.5",
"vbl-aquarium>=0.0.23",
]
[tool.hatch.version]
path = "oursin/__about__.py"
[project.urls]
Documentation = "https://virtualbrainlab.org/urchin/installation_and_use.html"
Issues = "https://github.com/VirtualBrainLab/Urchin/issues"
Source = "https://github.com/VirtualBrainLab/Urchin"