Skip to content

Commit d7ed5d2

Browse files
authored
Merge pull request #22 from openspyrit/manifest
Manifest
2 parents df6cdd0 + fce6cac commit d7ed5d2

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
recursive-include spas *.txt

README.md

+17-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,22 @@ SPAS is a companion package to the [SPyRiT](https://github.com/openspyrit/spyrit
88

99

1010
# Installation
11-
The SPAS package can be installed on Linux, MacOs and Windows. However, it will be fully functional on Windows only due to DLL dependencies required for harware control.
1211

13-
We recommend using a virtual environment.
12+
## For users
13+
The SPAS package can be installed on Linux, MacOs and Windows.
14+
15+
```powershell
16+
pip install git+https://github.com/openspyrit/spas.git
17+
```
18+
19+
Check your installation
20+
``` python
21+
from spas import read_metadata
22+
```
23+
This functions reads the metadata an existing acquisition (e.g., available on [SPIHIM](https://pilot-warehouse.creatis.insa-lyon.fr/))
24+
25+
## For developers
26+
The SPAS package can be installed on Linux, MacOs and Windows. However, it will be fully functional on Windows only due to DLL dependencies required for harware control.
1427

1528
* Clone the SPAS repository
1629

@@ -58,7 +71,8 @@ https://spas.readthedocs.io/
5871

5972
# Contributors (alphabetical order)
6073
* Thomas Baudier
61-
* Nicolas Ducros - [Website](https://www.creatis.insa-lyon.fr/~ducros/WebPage/index.html)
74+
* Guilherme Beneti-Martin
75+
* [Nicolas Ducros](https://www.creatis.insa-lyon.fr/~ducros/WebPage/index.html)
6276
* Laurent Mahieu Williame
6377

6478
# How to cite?

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
setup(
77
name='spas',
88
version='1.4.0',
9+
include_package_data=True,
910
description='A python toolbox for acquisition of images based on the single-pixel framework.',
1011
author='Guilherme Beneti Martins',
1112
url='https://github.com/openspyrit/spas',
@@ -17,7 +18,7 @@
1718
'certifi',
1819
'cycler',
1920
'kiwisolver',
20-
'matplotlib==3.7.5',
21+
'matplotlib', #==3.7.5
2122
'numpy',
2223
'msl-equipment @ git+https://github.com/MSLNZ/msl-equipment.git',
2324
'Pillow',

0 commit comments

Comments
 (0)