-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.3 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
[build-system]
requires = ["setuptools", "wheel", "pybind11"]
build-backend = "setuptools.build_meta"
[project]
name = "mdapy"
description = "A simple, fast and cross-platform python library to handle the data generated from molecular dynamics simulations."
dependencies = [
"taichi>=1.7.1",
"numpy<2.0",
"scipy",
"polars>=1.8.0",
"matplotlib",
"polyscope",
"tqdm"
]
classifiers = [
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
]
requires-python = ">=3.8, <3.12"
license = { file = "LICENSE" }
dynamic = ["version", "readme"]
authors = [
{ name = "mushroomfire aka HerrWu", email = "[email protected]" },
]
[project.optional-dependencies]
all = ['k3d', 'pyfftw']
k3d = ['k3d']
pyfftw = ['pyfftw']
[project.urls]
Homepage = "https://github.com/mushroomfire/mdapy"
Documentation = "https://mdapy.readthedocs.io/"
Issue_Tracker = "https://github.com/mushroomfire/mdapy/issues"
[project.scripts]
mdapy = "mdapy:main"
[tool.setuptools.dynamic]
version = { attr = "mdapy.__version__" }