-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
57 lines (39 loc) · 1.14 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
[project]
name = "rft1d"
version = "0.2.3"
description = "'One-Dimensional Random Field Theory"
readme = "README.md"
requires-python = ">=3.7"
# license = "GPL version 3"
# license = {file = "LICENSE.txt"}
keywords = [
"statistics",
"probability",
"hypothesis testing",
"functional data analysis",
"time series analysis",
"continuum data analysis"
]
authors = [
{name = "Todd Pataky", email = "0todd0@gmail.com" } # Optional
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.9",
]
dependencies = [
"numpy",
"scipy",
"matplotlib",
]
[project.urls] # Optional
"Homepage" = "https://www.spm1d.org/rft1d"
"Source" = "https://github.com/0todd0000/rft1d"
"Bug Reports" = "https://github.com/0todd0000/rft1d/issues"
[tool.setuptools]
package-data = {"rft1d.data.weather" = ["*.py", "*.npz", "*.npy", "*.m", "*.mat", "*.txt"]}
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"