forked from ywx649999311/EzTao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 894 Bytes
/
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
[tool.poetry]
name = "eztao"
version = "0.4.0"
description = "A toolkit for Active Galactic Nuclei (AGN) time-series analysis."
authors = ["Weixiang Yu <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/ywx649999311/EzTao"
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.7"
celerite = ">= 0.3.0"
matplotlib = "^3.3.0"
scipy = ">= 1.5"
numba = ">= 0.51.0"
importlib-metadata = ">= 2.0.0"
emcee = ">=3.0.0"
[tool.poetry.dev-dependencies]
toml = "^0.10.1"
pytest = "^6.0.1"
pytest-cov = "^2.10.1"
joblib = ">=1.2.0"
pandas = "^1.1.4"
Sphinx = "^3.4.1"
sphinx-rtd-theme = "^0.5.0"
nbsphinx = ">=0.8.6"
sphinx-copybutton = "^0.3.1"
black = "^21.7b0"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore::DeprecationWarning",
]