-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 837 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 837 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "fpex0"
version = "0.9.1"
authors = [
{name="Michael Strik", email="michael.strik@stud.uni-heidelberg.de"}
]
maintainers = [
{name="Andreas Sommer", email="code@andreas-sommer.eu"}
]
license = {text="MIT License"}
description = "This package is an implementation of the FPEX0 algorithm, a data-driven de-smearing method for DSC signals."
readme = "README.md"
requires-python = ">=3.7"
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"scipy",
"numpy",
"sympy",
]
[tool.setuptools]
packages = ["fpex0", "fpex0.example"]
[tool.setuptools.package-data]
'fpex0.example' = ["*.json"]