-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (68 loc) · 1.46 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "chromaquant"
dynamic = ["version"]
description = "Analytical platform for gas chromatography"
readme = "README.md"
license = {file = "LICENSE.txt"}
requires-python = ">=3.12"
authors = [{name = "Julia Hancock"},]
keywords = [
"Analysis",
"Chromatography",
"Mass Spectrometry",
"Analytical Chemistry",
"Complex Hydrocarbon Analysis",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Chemistry",
"Environment :: MacOS X",
]
dependencies = [
"pandas~=2.2.2",
"molmass~=2024.5.24",
"numpy~=1.26.4",
"chemformula~=1.3.1",
"scipy~=1.13.1",
"ttkthemes~=3.2.2",
"pillow~=10.3.0",
"plotly~=5.22.0",
"pubchempy~=1.0.4",
"rdkit~=2024.3.5",
"XlsxWriter~=3.2.0",
"openpyxl~=3.1.5",
]
[project.urls]
Repository = "https://github.com/JnliaH/ChromaQuant"
[tool.hatch.build.targets.sdist]
include = [
"/forms",
"/images",
"/resources",
"/response-factors",
"CONTRIBUTING.md",
"README.md",
"LICENSE.txt",
"LICENSES_bundled.txt",
]
exclude = [
"/__pycache__",
"/appdist",
"/build",
"/data",
"/shells",
"/spec",
"ChromaQuantIcon.icns",
]
[tool.hatch.version]
path = "src/chromaquant/__main__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/chromaquant"]
[project.gui-scripts]
chroma-ui = "chromaquant.__main__:runUI"