-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.31 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (45 loc) · 1.31 KB
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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spectradb"
version = "1.0.4"
description = "A Lightweight Spectroscopic Data Manager"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Amulya Baniya", email = "[email protected]" }
]
keywords = ["spectradb", "ftir", "fluorescence", "2dfluorescence", "nmr", "chemometrics"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent"
]
requires-python = ">=3.9, <4"
dependencies = [
"numpy",
"pandas",
"plotly",
"plotly-express"
]
[tool.setuptools]
package-dir = { "" = "src" }
packages = ["spectradb"]
[options.packages.find]
exclude = ["tests*", "test*"]
[project.urls]
Homepage = "https://github.com/acmoudleysa/SpectraDB"
Repository = "https://github.com/acmoudleysa/SpectraDB"
Documentation = "https://github.com/acmoudleysa/SpectraDB"
"Bug Tracker" = "https://github.com/acmoudleysa/SpectraDB/issues"
[tool.flake8]
max-line-length = 79
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--maxfail=5 --disable-warnings -q"
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"