-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
81 lines (73 loc) · 1.76 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
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
[build-system]
requires = ["conda", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "conda_subprocess"
description = "Run a subprocess in a different conda environment."
authors = [
{ name = "Jan Janssen", email = "janssen@mpie.de" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["conda", "subprocess"]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"conda==25.1.1",
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/pyiron/conda_subprocess"
[project.optional-dependencies]
executorlib = [
"executorlib==0.1.0",
]
[tool.ruff]
exclude = [".ci_support", "tests", "setup.py", "_version.py"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# flake8-comprehensions
"C4",
# eradicate
"ERA",
# pylint
"PL",
]
ignore = [
# Too many arguments in function definition
"PLR0913",
# ignore unsafe arguments
"PLW1509",
]
[tool.setuptools.packages.find]
include = ["conda_subprocess*"]
[tool.setuptools.dynamic]
version = {attr = "conda_subprocess.__version__"}
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "conda_subprocess/_version.py"
parentdir_prefix = "conda_subprocess"
tag_prefix = "conda_subprocess-"