-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (28 loc) · 980 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dirB"
version = "0.2.3"
authors = [
{ name="Santiago Fernández Prieto", email="mail.santiagofernandezprieto@gmail.com" },
{ name="German Navarro", email="ge.najim@gmail.com" },
]
dynamic = ["dependencies"]
description = "An I/O HDF5-based utility to assist in the distribution, execution and integration of data coming from different sources (e.g. results of mathematical optimization models)."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: System :: Archiving :: Mirroring"
]
[tool.setuptools]
packages = ["dirB"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
"Homepage" = "https://github.com/bsc-quantic/dirB"
[tool.black]
line-length = 1000