-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
48 lines (40 loc) · 1.08 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
[project]
name = "galtab"
authors = [
{name = "Alan Pearl", email = "[email protected]"}
]
description = "Galaxy tabulation: HOD counts-in-cells statistics with JAX"
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.rst"}
classifiers = ["Programming Language :: Python :: 3"]
dynamic = ["dependencies", "version"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
home = "https://github.com/AlanPearl/galtab"
[tool.setuptools_scm]
write_to = "galtab/_version.py"
write_to_template = "__version__ = '{version}'"
[tool.setuptools]
include-package-data = true
packages = {find = {exclude=["tests*", "scripts*", "docs*", "notebooks*"]}}
package-dir = {galtab = "galtab"}
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm>=7",
"tomli>1.0.0; python_version < '3.11'",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.flake8]
ignore = ["E231", "E241", "E501", "W503"]
per-file-ignores = [
"__init__.py:F401",
]
max-line-length = 88
count = true