-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.6 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
58
59
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"illustris_python"
]
[project]
name = "illustris_python"
version = "1.1.1"
authors = [
{ name="Dylan Nelson", email="dnelson@uni-heidelberg.de" },
]
description = "illustris_python analysis package."
license = "BSD-2-Clause"
license-files = ["LICEN[CS]E*"]
readme = "README.md"
requires-python = ">3.7.0"
dependencies = [
"h5py",
"numpy",
"six",
]
keywords = ["astronomy", "simulation", "cosmology", "astrophysics"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
[project.optional-dependencies] #[dependency-groups]
test = [
"nose",
"coverage",
]
[project.urls]
"Homepage" = "https://www.github.com/illustristng/illustris_python"
"Bug Tracker" = "https://www.github.com/illustristng/illustris_python/temet/issues"
"Documentation" = "https://www.tng-project.org/data/"
[tool.ruff]
#target-version = "py311"
line-length = 120
lint.select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
"D", # docstrings
]
format.skip-magic-trailing-comma = true
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["D103"] # Missing docstring in function