-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
44 lines (39 loc) · 1.17 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "pleiades"
version = "0.1.1"
description = "PLEIADES - Python Libraries Extensions for Isotopic Analysis via Detailed Examination of SAMMY"
authors = ["Alex M. Long <[email protected]>"]
license = "MIT"
packages = [
{ include = "pleiades", from = "src" }
]
include = [
"nucDataLibs/**"
]
[build-system]
requires = ["poetry>=1.1.0"]
build-backend = "poetry.core.masonry.api"
# ---------------------------------------------------------- #
# This section is for users who want to install via `poetry` #
# ---------------------------------------------------------- #
[tool.poetry.dependencies]
# Core
python = "^3.10" # replace with the appropriate Python version
setuptools = "*"
# Numerical
numpy = "*"
scipy = "*"
pandas = "*"
# Visualization
matplotlib = ">=3.1.2"
# Notebooks
jupyterlab = "^4.3.0"
[tool.poetry.scripts]
pleiades = "pleiades:main" # Console script entry point
post_install_check = "pleiades.post_install:check_sammy_installed"
[tool.poetry.dev-dependencies]
pytest = "*"
pre-commit = "^4.0.1"
# --------------------------------------------- #
# The rest all 3rd party plugins configurations #
# --------------------------------------------- #