forked from fastlib/fCWT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (30 loc) · 865 Bytes
/
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
[build-system]
requires = ["setuptools","numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "fCWT"
description = "A Python wrapper around the highly optimized C++ library for very fast calculation of the Continuous Wavelet Transform."
version = "0.1.17"
requires-python = ">=3.7"
authors = [
{email="[email protected]"},
{name="Lukas P.A. Arts"}
]
dependencies = [
"numpy >=1.14.5"
]
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
url = "https://github.com/fastlib/fCWT"
[project.optional-dependencies]
tests = [
"pytest < 6"
]