-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 loc) · 1.18 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "wara"
dynamic = ["version"]
description = "Gamma spectroscopy tools"
readme = "README.md"
authors = [
{name = "Mauricio Ayllon Unzueta", email = "mauri.ayllon12@gmail.com"},
]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
dependencies = [
"docopt >= 0.6.2",
"lmfit > 1.0.2",
"dateparser >= 1.1.1",
"pandas > 1.4.2",
"matplotlib >= 3.6.3",
"mplcursors >= 0.5.2",
"pyarrow >= 11.0.0",
"natsort >= 7.1.1",
"plotly >= 5.22.0",
"scipy >= 1.9.3",
"PyQtWebEngine",
"msgspec",
"bitstruct",
]
[project.urls]
Homepage = "https://github.com/mauricioAyllon/wara"
[project.scripts]
wara = "wara.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["wara*"]
[tool.setuptools.package-data]
wara = ["nuclear-data/*.txt", "nuclear-data/*.csv", "ui/*.ui", "ui/*.png"]
[tool.setuptools_scm]
write_to = "wara/version.py"