-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (55 loc) · 1.21 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "uv_pro"
version = "0.6.6"
authors = [
{ name="David Hebert", email="david@ddhebert.com" },
]
description = "Tools for processing Agilent 845x Chemstation UV-Vis data files."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Matplotlib",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Utilities",
]
keywords = [
'uv-vis',
'uvvis',
'spectroscopy',
'Agilent',
'845x',
'binary',
'.KD',
'.kd',
'.CSV',
'.csv',
'tool',
'processing',
'outliers',
'baseline',
'import',
'export'
]
dependencies = [
"numpy>=1.21.6",
"pandas>=1.5.2",
"pybaselines>=1.0.0",
"matplotlib>=3.6.2",
"scipy>=1.12.0",
"rich>=13.7.1"
]
[project.scripts]
uvp = "uv_pro.cli:main"
[project.urls]
"repository" = "https://github.com/dd-hebert/uv_pro"
"bug tracker" = "https://github.com/dd-hebert/uv_pro/issues"