-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (56 loc) · 1.74 KB
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
59
60
61
62
63
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyefd"
version = "1.8.0"
description = 'Python implementation of "Elliptic Fourier Features of a Closed Contour"'
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "MIT"}
authors = [
{name = "Henrik Blidh", email = "henrik.blidh@nedomkull.com"},
]
keywords = [
"elliptic fourier descriptors",
"fourier descriptors",
"shape descriptors",
"image analysis",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">=3.10"
dependencies = ["numpy>=1.7.0"]
[dependency-groups]
test = ["pytest", "scipy", "pytest-cov"]
dev = ["pytest", "scipy", "sphinx", "sphinx-rtd-theme", "flake8", "pytest-cov"]
[project.urls]
Homepage = "https://github.com/hbldh/pyefd"
Repository = "https://github.com/hbldh/pyefd"
[tool.setuptools]
py-modules = ["pyefd"]
[tool.pytest.ini_options]
testpaths = ["tests.py"]
[tool.coverage.run]
branch = true
source = ["pyefd"]
include = ["*/pyefd/*"]
omit = ["*/setup.py"]
[tool.coverage.report]
exclude_lines = [
"def plot_efd",
"except NameError",
]