Skip to content

Commit

Permalink
add PyPi information
Browse files Browse the repository at this point in the history
  • Loading branch information
PolarBean committed Aug 21, 2024
1 parent 2ba13ed commit f2e80d4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
1 change: 0 additions & 1 deletion PyNutil/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from .metadata import metadata_loader
from .read_and_write import read_atlas_volume, write_points_to_meshview
from .coordinate_extraction import folder_to_atlas_space
from .counting_and_load import label_points, pixel_count_per_region
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ PyNutil is a Python library for brain-wide quantification and spatial analysis o

For more information about the QUINT workflow:
https://quint-workflow.readthedocs.io/en/latest/

# Installation
```
pip install PyNutil
```
# Usage
As input, PyNutil requires:
1. An alignment JSON created with the QuickNII or VisuAlign software
Expand Down
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,20 @@

setup(
name="PyNutil",
version='0.1.4',
version='0.1.1',
packages=find_packages(),
license='MIT',
description='a package to translate data between common coordinate templates',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'numpy',
'nibabel',
'scipy',
'networkx',
'brainglobe_atlasapi',
'pandas',
'requests'
'requests',
'pynrrd',
'xmltodict',
'opencv-python',
'scikit-image'
]
)

0 comments on commit f2e80d4

Please sign in to comment.