-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (53 loc) · 1.71 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", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "reflectorch"
version = "1.2.1"
authors = [
{name = "Vladimir Starostin", email="[email protected]"},
{name = "Valentin Munteanu", email="[email protected]"}
]
maintainers = [
{name = "Valentin Munteanu", email="[email protected]"},
{name = "Vladimir Starostin", email="[email protected]"},
{name = "Alexander Hinderhofer", email="[email protected]"}
]
description = "A Pytorch-based package for the analysis of reflectometry data"
keywords = ["reflectometry", "machine learning"]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Environment :: GPU :: NVIDIA CUDA",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.7"
dependencies = [
"numpy>=1.18.1,<2.0",
"torch>=1.8.1",
"scipy",
"tqdm",
"PyYAML",
"click",
"matplotlib",
"ipywidgets",
"huggingface_hub",
"safetensors",
]
[project.optional-dependencies]
tests = ["pytest", "pytest-cov"]
docs = ["jupyter-book", "sphinx"]
build = ["build", "twine"]
[project.urls]
Source = "https://github.com/schreiber-lab/reflectorch/"
Issues = "https://github.com/schreiber-lab/reflectorch/issues"
Documentation = "https://schreiber-lab.github.io/reflectorch/"
[tool.setuptools]
packages = ["reflectorch"]
[tool.pytest.ini_options]
testpaths = ["tests"]