-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 889 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 889 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>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flowtracks"
version = "1.1.1"
description = "Library for handling of PTV trajectory database."
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "Yosef Meller", email = "yosefm@gmail.com" }]
license = { file = "LICENSE.txt" }
dependencies = [
"numpy",
"scipy",
"tables"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering"
]
[dependency-groups]
dev = [
"pytest>=8.4.2",
]