-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.44 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
[build-system]
requires = ["numpy>=2.0.0rc1", "scikit-build-core", "nanobind>=2.0.0"]
build-backend = "scikit_build_core.build"
[project]
name = "freud-analysis"
version = "3.2.0"
requires-python = ">=3.9"
description = "Powerful, efficient trajectory analysis in scientific Python."
readme = "README.rst"
license = { file = "LICENSE" }
authors = [
{ name = "The Glotzer Lab" }
]
maintainers = [
{ name = "freud Developers" }
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: C++",
"Programming Language :: Cython",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = ["numpy>=1.19", "rowan>=1.2.1", "scipy>=1.1"]
keywords = ["simulation", "analysis", "molecular dynamics", "soft matter",
"particle", "system", "computational", "physics"]
[project.urls]
Documentation = "https://freud.readthedocs.io"
Download = "https://pypi.org/project/freud-analysis/"
Source = "https://github.com/glotzerlab/freud"
Issues = "https://github.com/glotzerlab/freud/issues"
[tool.scikit-build]
sdist.exclude = [".github", "doc"]