-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
61 lines (54 loc) · 1.64 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
[build-system]
requires = ["jinja2", "pandas", "pyyaml", "setuptools", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "pysqa"
description = "Simple HPC queuing system adapter for Python on based jinja templates to automate the submission script creation."
authors = [
{ name = "Jan Janssen", email = "janssen@mpie.de" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["pyiron"]
requires-python = ">=3.9, <3.14"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Physics",
"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",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"jinja2==3.1.4",
"pandas==2.2.3",
"pyyaml==6.0.2",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/pyiron/pysqa"
Documentation = "https://pysqa.readthedocs.io"
Repository = "https://github.com/pyiron/pysqa"
[project.optional-dependencies]
sge = ["defusedxml==0.7.1"]
remote = [
"paramiko==3.5.0",
"tqdm==4.67.0",
]
twofactor = ["pyauthenticator==0.2.0"]
[project.scripts]
pysqa = "pysqa.cmd:command_line"
[tool.setuptools.packages.find]
include = ["pysqa*"]
[tool.setuptools.dynamic]
version = {attr = "pysqa.__version__"}
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "pysqa/_version.py"
parentdir_prefix = "pysqa"
tag_prefix = "pysqa-"