Metadata-Version: 2.1
Name: nesse
Version: 0.1.1
Summary: A solid state detector simulation developed for the Nab experiment.
Author-email: RJ Taylor <rjtaylo2@ncsu.edu>, Leendert Hayen <hayen@lpccaen.in2p3.fr>
Project-URL: Homepage, https://github.com/rjtayl/nesse
Project-URL: Bug Tracker, https://github.com/rjtayl/nesse/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy==1.24.3
Requires-Dist: scipy
Requires-Dist: tqdm
Requires-Dist: Cython==0.29.32
Requires-Dist: matplotlib
Requires-Dist: numba
Requires-Dist: h5py
Requires-Dist: uproot==4.3.7
Requires-Dist: pandas

# nesse
Nab Event Shape Simulation Effort (NESSE) is a python based solid state detector simulation developed for the Nab experiment. 


### Dependencies
Please insure the following dependencies are installed if installing nesse manually.

- Cython==0.29.32
- uproot==4.3.7
- numpy==1.24.3
- scipy
- tqdm
- matplotlib
- numba
- h5py
- pandas


### Install
nesse can either be installed using pip or manually.

To install with pip 

```
python3 -m pip install nesse
```

To install manually git clone and append the path to the nesse src directory like below:
```
import sys
sys.path.append(path_to_nesse+"/src/")
import nesse
```

Please see the tutorial notebook for more instruction on how to use nesse. 
