-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.24 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
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm>=7",
"tomli>=1.0.0; python_version>='3.11'",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "dsps/_version.py"
write_to_template = "__version__ = '{version}'\n"
[tool.setuptools]
include-package-data = true
packages = {find = {exclude=["tests*", "scripts*", "docs*", "notebooks*"]}}
package-data = {dsps = ["data/*.npy", "tests/testing_data/*.npy", "tests/testing_data/*.txt", "tests/testing_data/*.dat", "*/tests/testing_data/*.txt", "*/tests/testing_data/*.dat"]}
package-dir = {dsps = "dsps"}
[project.urls]
home = "https://github.com/ArgonneCPAC/dsps"
[project]
name = "dsps"
authors = [
{name = "Andrew Hearin", email = "[email protected]"},
]
description = "Differentiable Stellar Population Synthesis"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE.rst"}
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["version", "dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[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