-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (32 loc) · 918 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
34
35
36
37
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gcms_data_analysis"
version = "1.2.0"
authors = [{ name = "Matteo Pecchi" }]
description = "Automatic analysis of GC-MS data"
readme = "README.md"
license = { file = "LICENSE" } # Ensure the file name matches the case (e.g., LICENSE or license)
# Dependencies directly under [project]
dependencies = [
"numpy",
"pandas",
"matplotlib",
"seaborn",
"ele",
"pubchempy",
"rdkit",
"openpyxl",
"pyarrow"
]
# Classifiers directly under [project]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/mpecchi/gcms_data_analysis/tree/main"
Documentation = "https://gcms-data-analysis.readthedocs.io/en/latest/"