-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
88 lines (77 loc) · 1.97 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
name = "pypetal"
version = "1.0.1"
description = "A pipeline for estimating AGN time lags"
authors = ["Zstone19 <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Zstone19/pypetal"
repository = "https://github.com/Zstone19/pypetal"
documentation = "https://pypetal.readthedocs.io"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics"
]
[tool.poetry.dependencies]
python = ">=3.8, <3.11"
astropy = "^5.2.2"
autograd = "^1.5"
celerite = "^0.4.2"
colorama = "^0.4.6"
corner = "^2.2.1"
emcee = "^3.1.4"
matplotlib = "^3.7.1"
numba = "^0.56.4"
numpy = ">=1.19.0, <1.23.0"
palettable = "^3.3.0"
pandas = "^1.5.3"
PyROA = ">=3.2.1"
pyzdcf = "^1.0.0"
scipy = "^1.10.1"
tabulate = "^0.9.0"
toml = "^0.10.2"
tqdm = "^4.65.0"
[tool.poetry.group.extra.dependencies]
linmix = {git = "https://github.com/jmeyers314/linmix.git"}
pkgconfig = "^1.5.5"
cython = "^3.0.8"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
pytest-cov = "^4.0.0"
ipykernel = "^6.22.0"
nbsphinx = "^0.9.1"
sphinx = "^6.1.3"
sphinx-copybutton = "^0.5.1"
sphinx-rtd-theme = "^1.2.0"
pre-commit = "^3.2.1"
[tool.pytest.ini_options]
filterwarnings = "ignore::DeprecationWarning"
[tool.coverage.run]
branch = "true"
omit = [
"*/.local/*",
"/usr/*",
"docs/*",
"examples/*",
".gitignore",
".readthedocs.yml",
"build_plike.sh",
"plike_v4/*",
"for_jav/*",
"LICENSE",
"MANIFEST.in",
"README.md",
"requirements.txt"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"