-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
executable file
·33 lines (30 loc) · 963 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
[tool.pytest.ini_options]
pythonpath = [
"."
]
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py_agata"
version = "0.0.8"
authors = [
{ name="Giacomo Cappon", email="[email protected]" },
]
description = "AGATA (Automated Glucose dATa Analysis): a toolbox to analyse glucose data."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = { file = ["requirements-dev.txt"] }}
[project.urls]
"Homepage" = "https://github.com/gcappon/py_agata"
"Bug Tracker" = "https://github.com/gcappon/py_agata/issues"