Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use poetry to install the package #115

Merged
merged 2 commits into from
Feb 5, 2024
Merged
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
59 changes: 32 additions & 27 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,39 +1,44 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
[tool]
[tool.poetry]
name = "fuse"
version = "0.3.0"
description = "XENON Framework for Unified Simulations of Events"
authors = [
{ name="Henning Schulze Eißing", email="[email protected]" },
{ name="Diego Ramírez García", email="[email protected]" }
"Henning Schulze Eißing, <[email protected]>",
"Diego Ramírez García, <[email protected]>",
]
description = "XENON Framework for Unified Simulations of Events"
readme = "README.md"
requires-python = ">=3.9"
homepage = "https://github.com/XENONnT/fuse"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"numpy",
"pandas",
"scipy",
"scikit-learn",
"immutabledict",
"timeout_decorator",
"nestpy >= 2.0.2",
"numba >= 0.57.0",
"awkward >= 2.2.1",
"uproot >= 5.0.7",
"strax >= 1.6.0",
"straxen >= 2.2.0",
packages = [
{ include = "fuse" },
{ include = "tests", format = "sdist" },
]

[project.urls]
"Homepage" = "https://github.com/XENONnT/fuse"
"Bug Tracker" = "https://github.com/XENONnT/fuse/issues"
[tool.poetry.dependencies]
numpy = "*"
pandas = "*"
scipy = "*"
scikit-learn = "*"
immutabledict = "*"
timeout_decorator = "*"
nestpy = ">=2.0.2"
numba = ">=0.58.1"
awkward = ">=2.5.1"
uproot = ">=5.2.1"
strax = ">=1.6.0"
straxen = ">=2.2.0"

[tool.setuptools.packages.find]
include = ["fuse*"]
[build-system]
requires = ["poetry-core>=1.0.8", "setuptools"]
build-backend = "poetry.core.masonry.api"
Loading