-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to pyproject.toml and remove some imports
- Loading branch information
Showing
12 changed files
with
43 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ | |
import cutax | ||
import straxen | ||
import fuse | ||
import os | ||
import numpy as np | ||
|
||
from straxen import URLConfig | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
import strax | ||
import straxen | ||
import os | ||
import numba | ||
import logging | ||
|
||
import pandas as pd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import strax | ||
import numpy as np | ||
import straxen | ||
import os | ||
import logging | ||
|
||
export, __all__ = strax.exporter() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import strax | ||
import straxen | ||
import numpy as np | ||
import os | ||
import logging | ||
|
||
export, __all__ = strax.exporter() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import strax | ||
import numpy as np | ||
import straxen | ||
import os | ||
import logging | ||
|
||
export, __all__ = strax.exporter() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import strax | ||
import straxen | ||
import numpy as np | ||
import os | ||
import logging | ||
|
||
from numba import njit | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
import straxen | ||
import uproot | ||
import os | ||
import numba | ||
import logging | ||
|
||
import pandas as pd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import strax | ||
import numpy as np | ||
import straxen | ||
import os | ||
import logging | ||
|
||
export, __all__ = strax.exporter() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "XENONfuse" | ||
version = "0.0.0" | ||
description = "XENON Framework for Unified Simulations of Events" | ||
authors = [ | ||
{ name = "Henning Schulze Eißing", email = "[email protected]" }, | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.6" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: OS Independent", | ||
"Natural Language :: English", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Physics" | ||
] | ||
dependencies = [ | ||
"numpy", | ||
"scipy", | ||
"numba", | ||
"awkward", | ||
"strax", | ||
"straxen", | ||
"copy", | ||
"cutax", | ||
"itertools", | ||
"logging", | ||
"sklearn", | ||
"pandas", | ||
"os", | ||
"uproot", | ||
"pickle", | ||
"nestpy", | ||
"immutabledict", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/XENONnT/fuse" | ||
"Bug Tracker" = "https://github.com/XENONnT/fuse/issues" |