-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.17 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 = "diffstar/_version.py"
write_to_template = "__version__ = '{version}'\n"
[tool.setuptools]
include-package-data = true
packages = {find = {exclude=["tests*", "scripts*", "docs*", "notebooks*"]}}
package-data = {diffstar = ["tests/testing_data/*", "*/tests/testing_data/*"]}
package-dir = {diffstar = "diffstar"}
[project.urls]
home = "https://github.com/ArgonneCPAC/diffstar"
[project]
name = "diffstar"
authors = [
{name = "Alex Alarcon", email = "alexalarcongonzalez@gmail.com"},
]
description = "Differentiable Star Formation Histories"
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