-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (44 loc) · 1.02 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
[build-system]
requires = ["meson-python>=0.16.0"]
build-backend = "mesonpy"
# Important, tells pip how to install the package
[project]
name = "solvis-tools"
version = "0.1.5"
description = "A module for analyzing and visualizing solvation shells in LAMMPS output files, but would work with most files that can be handled by ASE."
authors = [
{name = "Amrita Goswami", email = "[email protected]"},
]
classifiers=[
'Programming Language :: Python :: 3.10']
dependencies = [
"ase >= 3.22.1",
"numpy",
"scipy >= 1.7.3",
"pyvista >= 0.43.0",
"pillow >= 10.0.1",
"imageio >= 2.31.5",
"pooch>=1.8.0",
"scooby>=0.9.2"]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
test = [
"pytest>=6.2.5",
"coverage>=6.1.1",
"pytest-cov>=3.0.0",
]
dev = [
"flake8>=3.9.2",
"mypy>=0.910",
"black>=22.3.0",
"isort>=5.9.3",
"autoflake>=1.4",
"flake8-docstrings>=1.6.0",
]
examples = [
"pandas"
]
[tool.isort]
profile = "black"