forked from lexis-project/Py4Lexis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (22 loc) · 771 Bytes
/
pyproject.toml
File metadata and controls
24 lines (22 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py4lexis"
version = "1.1.0"
description = "Provides functions to manage datasets within LEXIS platform."
readme = "README.md"
authors = [{ name = "Martin Golasowski", email = "martin.golasowski@vsb.cz" },
{ name = "Ladislav Foltyn", email = "ladislav.foltyn@vsb.cz" },
{ name = "Marek Nieslanik", email = "nie0067@vsb.cz" }
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
keywords = ["hpc", "py4lexis", "lexis"]
dynamic=["dependencies"]
requires-python = ">=3.10"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}