-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.28 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "flake-rigid"
version = "0.1.3"
authors = [
{ name="Andrea Silva", email="ansilva@sissa.it" },
]
description = "Friction and Lattice Analysis of Kinetics and Energetics: statics and overdamped Langevin dynamics of a 2D rigid cluster over a substrate."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy",
"numba",
"pyyaml",
"h5py",
"joblib",
]
keywords = ["simulation", "physics", "friction", "nanoscale-molecular-dynamics"]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["flake*"]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (run with: pytest -m slow)",
]
[project.scripts]
flake = "flake.cli:main"
[project.urls]
"Homepage" = "https://flake-rigid.readthedocs.io/en/latest/"
"Source" = "https://github.com/LamaKing/flake_rigid"