Skip to content

Commit 658cb78

Browse files
committed
refactor(polpy-dir): Init commit with basic structure
1 parent 52a2ef0 commit 658cb78

File tree

6 files changed

+893
-0
lines changed

6 files changed

+893
-0
lines changed

poetry.lock

+870
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

polpy/__init__.py

Whitespace-only changes.

polpy/polarizationlike.py

Whitespace-only changes.

polpy/poldata.py

Whitespace-only changes.

polpy/polresponse.py

Whitespace-only changes.

pyproject.toml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[tool.poetry]
2+
name = "polpy"
3+
version = "0.0.0"
4+
description = "3ML plugin for X-/gamma-ray polarimetry"
5+
authors = ["Sujay Mate <[email protected]>", "Merlin Kole <[email protected]>"]
6+
license = "GPL-3.0"
7+
readme = "README.md"
8+
9+
[tool.poetry.dependencies]
10+
python = ">=3.10"
11+
astropy = "^6.1.0"
12+
numpy = "^1.26.4"
13+
scipy = "^1.13.1"
14+
15+
[tool.poetry.group.dev.dependencies]
16+
pytest = "^8.2.0"
17+
pytest-cov = "^5.0.0"
18+
commitizen = "^3.25.0"
19+
pre-commit = "^3.7.0"
20+
21+
[build-system]
22+
requires = ["poetry-core"]
23+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)