-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (49 loc) · 1.55 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
55
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "parseq_XAS"
description = "A ParSeq pipeline for data processing of XAS spectra"
dynamic = ["version"]
readme = "README.md"
authors = [
{name = "Konstantin Klementiev", email = "konstantin.klementiev@gmail.com"}
]
keywords = ["data-analysis", "pipeline", "framework", "gui", "spectroscopy"]
license = "MIT"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Software Development :: User Interfaces",
]
requires-python = ">=3.7"
dependencies = [
"numpy>=1.8.0",
"scipy>=1.17.0",
"matplotlib>=2.0.0",
"h5py",
"silx>=2.2.0",
"hdf5plugin",
]
[project.urls]
Homepage = "http://parseq-xas.readthedocs.io"
Repository = "https://github.com/kklmn/ParSeq-XAS"
Issues = "https://github.com/kklmn/ParSeq-XAS/issues"
[project.scripts]
parseq-XAS = "parseq_XAS.XAS_start:run"
[tool.setuptools.dynamic]
version = {attr = "parseq_XAS.version.__version__"}
[tool.setuptools.packages.find]
include = ["parseq_XAS"]
[tool.setuptools.package-data]
parseq_XAS = [
"data/foils/*", "data/foils/*/*", "data/foils/*/*/*", "data/HERFD/*.*",
"data/CeRu2/*", "data/CeRu2/*/*", "data/CeRu2/*/*/*", "data/*.fio",
"data/*.res", "doc/*.*", "doc/_images/*.*", "saved/*.*",
]