-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 1007 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 1007 Bytes
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nmmn"
version = "1.3.6"
description = "Miscellaneous methods for data science and astronomy"
readme = "README.md"
license = { text = "MIT License" }
authors = [{ name = "Rodrigo Nemmen", email = "rodrigo.nemmen@iag.usp.br" }]
keywords = ["science", "statistics", "signal-processing", "numerical-methods", "astronomy", "numerical-simulations", "astrophysics", "mhd", "grmhd"]
requires-python = ">=3.7"
dependencies = [
"numpy",
"scipy",
"matplotlib>=2.0.2",
"uncertainties",
"astropy",
]
[project.optional-dependencies]
finance = ["yfinance", "plotly"]
grmhd = ["tqdm"]
fermi = ["aplpy", "configobj"]
dsp = ["peakutils", "wavelets"]
bayes = ["emcee", "pymc"]
ml = ["scikit-learn", "transformer_lens"]
[project.urls]
Homepage = "https://github.com/rsnemmen/nmmn"
Repository = "https://github.com/rsnemmen/nmmn"
[tool.setuptools.packages.find]
exclude = ["tests*", "docs*"]