-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
91 lines (82 loc) · 2.22 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
89
90
91
[tool.poetry]
name = "sdss-lvmagp"
version = "0.3.6"
description = "Aquisition and guiding package for SDSS-V LVM"
authors = ["Hojae Ahn <hojaeahn@khu.ac.kr>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/sdss/lvmagp"
repository = "https://github.com/sdss/lvmagp"
documentation = "https://sdss-lvmagp.readthedocs.org"
keywords = ["astronomy", "software"]
classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{ include = "lvmagp", from = "python" }
]
include = ["python/lvmagp/etc/*"]
[tool.poetry.build]
script = "build.py"
generate-setup-file = false
[tool.poetry.scripts]
lvmagp = "lvmagp.__main__:lvmagp"
[tool.poetry.dependencies]
python = ">=3.8, <4"
photutils = ">=1.3.0"
scipy = ">=1.7"
black = "^21.7-beta.0"
sdss-cluplus = ">=0.0.16"
sdss-lvmtipo = ">=0.0.10"
pandas = ">=1.1"
aiohttp = ">=3.7"
sep = ">=1.2"
lmfit = ">=1.0"
astrometry = ">=4.1"
[tool.poetry.dev-dependencies]
ipython = ">=7.31.1"
matplotlib = ">=3.1.1"
flake8 = ">=3.7.9"
doc8 = ">=0.8.0"
pytest = ">=5.2.2"
pytest-asyncio = ">=0.10.0"
pytest-cov = ">=2.8.1"
pytest-mock = ">=1.13.0"
pytest-sugar = ">=0.9.2"
isort = ">=4.3.21"
codecov = ">=2.0.15"
coverage = {version = ">=5.0", extras = ["toml"]}
ipdb = ">=0.12.3"
rstcheck = "^3.3.1"
Sphinx = "^3.0.0"
[tool.isort]
line_length = 79
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "SDSS", "FIRSTPARTY", "LOCALFOLDER"]
default_section = "THIRDPARTY"
known_first_party = "lvmagp"
known_sdss = ["sdsstools"]
balanced_wrapping = true
include_trailing_comma = false
lines_after_imports = 2
use_parentheses = true
[tool.pytest.ini_options]
addopts = "--cov lvmagp --cov-report xml --cov-report html --cov-report term"
[tool.coverage.run]
branch = true
include = ["python/lvmagp/*"]
omit = [
"*/__init__.py",
]
[tool.coverage.report]
exclude_lines = [
]
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools>=49.6.0"]
build-backend = "poetry.core.masonry.api"