-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
84 lines (76 loc) · 2.12 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
[tool.poetry]
name = "sdss-lvmtan"
version = "0.3.11a0"
description = "Lvm Tan Clu Wrapper"
authors = ["Florian Briegel <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://github.com/sdss/lvmtan"
repository = "https://github.com/sdss/lvmtan"
documentation = "https://sdss-lvmtan.readthedocs.org"
keywords = ["astronomy", "software"]
classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{ include = "lvmtan", from = "python" }
]
include = ["python/lvmtan/config/*", "python/lvmtan/config/*/*", "python/lvmtan/config/*/*/*"]
[tool.poetry.scripts]
container_build = "container:build"
container_start = "container:start"
container_stop = "container:stop"
container_isRunning = "container:isRunning"
[tool.poetry.dependencies]
python = ">=3.8, <4"
sdsstools = ">=0.4.0"
sdss-clu = ">=2.0.0"
sdss-lvmtipo = ">=0.0.36"
sdss-cluplus = ">=0.0.1"
typing-extensions = "^4.12.2"
[tool.poetry.dev-dependencies]
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 = "lvmtan"
known_sdss = ["sdsstools"]
balanced_wrapping = true
include_trailing_comma = false
lines_after_imports = 2
use_parentheses = true
[tool.pytest.ini_options]
# addopts = "--cov lvmtan --cov-report xml --cov-report html --cov-report term"
testpaths = [
"tests",
]
[tool.coverage.run]
branch = true
include = ["python/lvmtan/*"]
omit = [
"*/__init__.py",
]
[tool.coverage.report]
exclude_lines = [
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"