Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ exclude =
tpx3awkward/_version.py,
docs/source/conf.py
max-line-length = 115
ignore = E203, W503 # Ignore some style 'errors' produced while formatting by 'black'
ignore =
# Ignore some style 'errors' produced while formatting by 'black'
E203,
W503
2 changes: 2 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ Maintainer
Contributors
------------

* Thomas Caswell <tcaswell@bnl.gov>
* Justin Goodrich <jgoodrich@bnl.gov>
* Eugene Matviychuk <ymatviych1@bnl.gov>
13 changes: 7 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# List required packages in this file, one per line.
os
pathlib
typing
numpy
numba
os
pandas
scipy.spatial
concurrent.futures
multiprocessing
time
tdqm
functools
warnings
glob
tqdm
gc
pyCHX
1 change: 1 addition & 0 deletions tpx3awkward/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from pathlib import Path
from . import _version
from ._utils import ingest_from_files


def _get_version():
Expand Down
Loading
Loading