-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (38 loc) · 1.03 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
[build-system]
requires = ["setuptools >= 61.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "NRSS"
description = "NIST RSoXS Simulation Suite"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name = "Dean DeLongchamp", email = "[email protected]" },
{ name = "Peter Dudenas", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: Public Domain",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python :: 3",
]
dependencies = [
"h5py",
"matplotlib",
"numpy",
"pandas",
"PyHyperScattering>=0.1.7",
"scikit-image",
"scipy",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/usnistgov/NRSS/"
[tools.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
write_to = "src/NRSS/_version.py"
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"