generated from pyiron/pyiron_module_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (91 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
104 lines (91 loc) · 1.99 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = [
"hatchling==1.29.0",
"hatch-vcs==0.5.0",
"numpy",
]
build-backend = "hatchling.build"
[project]
name = "courier"
description = "courier - Interfaces for publishing workflow recipies, instances and related assets"
readme = "docs/README.md"
keywords = [ "pyiron",]
requires-python = ">=3.11, <3.14"
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"numpy==2.4.2",
"pandas==3.0.1",
"requests==2.32.5",
"sparqlwrapper==2.0.0",
]
dynamic = [ "version",]
authors = [
{ name = "Marian Bruns", email = "m.bruns@mpi-susmat.de" },
]
[project.license]
file = "LICENSE"
[project.urls]
Homepage = "https://pyiron.org/"
Documentation = "https://courier.readthedocs.io"
Repository = "https://github.com/pyiron/courier"
[tool.hatch.build]
include = [
"courier"
]
[tool.hatch.build.hooks.vcs]
version-file = "courier/_version.py"
[tool.hatch.build.targets.sdist]
include = [
"courier"
]
[tool.hatch.build.targets.wheel]
packages = [
"courier"
]
[tool.hatch.version]
source = "vcs"
path = "courier/_version.py"
[tool.ruff]
exclude = ["docs", "notebooks"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["E501"] #ignore line-length violations
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"] # Ignore unused imports in init files -- we specify APIs this way
[tool.black]
extend-exclude = '''
(
^/docs
)
'''
[tool.mypy]
exclude = [
"^docs/conf\\.py$",
"^tests/",
]
ignore_missing_imports = true
strict_equality = true
non_interactive = true
install_types = true