-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (52 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (52 loc) · 1.62 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "uvtable"
version = "0.1"
description = "Package to manipulate radioastronomy visibility tables"
readme = "README.md"
requires-python = ">=3.6"
license = {text = "BSD 3-Clause License"}
authors = [
{name = "Sébastien Maret", email = "sebastien.maret@univ-grenoble-alpes.fr"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Astronomy",
"Intended Audience :: Science/Research"
]
dependencies = ["astropy", "numpy", "scipy"]
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
doc = ["sphinx", "sphinx-rtd-theme", "myst-parser", "toml"]
dev = ["black", "flake8", "flake8-pyproject", "pylint"]
[project.urls]
homepage = "https://github.com/smaret/uvtable"
documentation = "https://www.sebastienmaret.net/uvtable/"
repository = "https://github.com/smaret/uvtable"
[tool.setuptools]
packages = ["uvtable"]
[tool.pytest.ini_options]
addopts = "--cov=uvtable"
[tool.flake8]
per-file-ignores = "__init__.py:F401"
max-line-length = 88
docstring-convention = "numpy"
extend-ignore = "D202"
[tool.pylint.main]
ignore-paths = ["docs/conf.py"]
ignored-modules = ["astropy.units", "astropy.constants"]
load-plugins = "pylint.extensions.docparams"
[tool.pylint.basic]
good-names = ["x", "y", "i", "j", "u", "v", "w", "pa", "I_0"]
[tool.pylint.design]
max-args = 10
max-attributes = 10
max-local = 20
max-return = 10
[tool.pylint."messages control"]
disable = ["fixme"]