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 #45

Merged
merged 3 commits into from
Apr 28, 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
32 changes: 13 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,14 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
[tool]
[tool.poetry]
name = "axidence"
version = "0.2.0"
description = "strax-based data-driven accidental coincidence background simulation and peak-level salting"
readme = "README.md"
license.file = "LICENSE"
license = "BSD-3-Clause"
authors = [
{ name = "Dacheng Xu", email = "[email protected]" },
]
maintainers = [
{ name = "Dacheng Xu", email = "[email protected]" },
"Dacheng Xu, <[email protected]>",
]
requires-python = ">=3.9"

dependencies = [
"strax",
"straxen",
]

classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
Expand All @@ -30,7 +18,13 @@ classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
]
repository = "https://github.com/dachengx/axidence"
documentation = "https://readthedocs.org/projects/axidence/"

[project.urls]
Homepage = "https://github.com/dachengx/axidence"
Documentation = "https://readthedocs.org/projects/axidence/"
[tool.poetry.dependencies]
strax = ">=1.6.2"
straxen = ">=2.2.1"

[build-system]
requires = ["poetry-core>=1.0.8", "setuptools>=61.0"]
build-backend = "poetry.core.masonry.api"
Loading