Skip to content

Commit f96c9be

Browse files
committed
Merge branch 'develop'
2 parents f9f101f + 9e2d69c commit f96c9be

File tree

137 files changed

+24223
-16097
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+24223
-16097
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,10 @@ build/*
8282

8383
urchin-vn/*
8484
UnityClient/UserSettings/Layouts/default-2021.dwlt
85+
86+
Examples/bwm_peth/data/*
87+
88+
urchin-venv/*
8589
API/urchin-venv/*
90+
Examples/steinmetz_3dvol_test/testwf4.npy
91+
Examples/bwm_coverage/lab_clusters.csv

API/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
# Urchin - Unity Renderer for Neuroscience Python API
1+
# Urchin - Unity Renderer Creating Helpful Images for Neuroscience (Python API)
2+
3+
More details can be found on [our website](https://virtualbrainlab.org/03_unity_neuro/01_urn_intro.html)
-31 KB
Binary file not shown.

API/dist/unityneuro-0.4.1.tar.gz

-42.4 KB
Binary file not shown.
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Metadata-Version: 2.1
2-
Name: unityneuro
2+
Name: oursin
33
Version: 0.4.4
4-
Summary: Urchin - Unity Renderer for Neuroscience Python API
4+
Summary: Urchin - Universal Renderer for Neuroscience Python API
55
Author-email: Daniel Birman <[email protected]>
66
License: GNU GENERAL PUBLIC LICENSE
77
Version 3, 29 June 2007
@@ -687,4 +687,6 @@ Requires-Python: >=3.7
687687
Description-Content-Type: text/markdown
688688
License-File: LICENSE
689689

690-
# Urchin - Unity Renderer for Neuroscience Python API
690+
# Urchin - Unity Renderer Creating Helpful Images for Neuroscience (Python API)
691+
692+
More details can be found on [our website](https://virtualbrainlab.org/03_unity_neuro/01_urn_intro.html)

API/oursin.egg-info/SOURCES.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
LICENSE
2+
README.md
3+
pyproject.toml
4+
setup.cfg
5+
oursin/__init__.py
6+
oursin/camera.py
7+
oursin/client.py
8+
oursin/lines.py
9+
oursin/neurons.py
10+
oursin/primitives.py
11+
oursin/probes.py
12+
oursin/renderer.py
13+
oursin/text.py
14+
oursin/volumes.py
15+
oursin.egg-info/PKG-INFO
16+
oursin.egg-info/SOURCES.txt
17+
oursin.egg-info/dependency_links.txt
18+
oursin.egg-info/requires.txt
19+
oursin.egg-info/top_level.txt
20+
oursin/atlas/__init__.py
21+
oursin/atlas/ccf.py
22+
oursin/colors/__init__.py
23+
oursin/colors/colors.py
24+
oursin/colors/xkcd_rgb.py
File renamed without changes.

API/oursin.egg-info/top_level.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
oursin

API/oursin/__init__.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
"""
2+
urchin.
3+
4+
Python library for connecting to and sending data to a Universal Renderer for Neuroscience renderer.
5+
"""
6+
__author__ = 'Daniel Birman'
7+
__version__ = "0.4.4"
8+
9+
# load the client
10+
from . import client
11+
from .renderer import *
12+
13+
# load the scene controls
14+
from . import camera
15+
16+
# load the object controls
17+
from . import lines
18+
from . import neurons
19+
from . import primitives
20+
from . import probes
21+
from . import text
22+
from . import volumes
23+
24+
# load the colors
25+
from . import colors
26+
27+
# load the atlases
28+
from .atlas import *

0 commit comments

Comments
 (0)