-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (33 loc) · 972 Bytes
/
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
[build-system]
requires = ["pybind11", "setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ferrodispcalc"
version = "0.1.0"
description = "FerroDispCalc (FDC) is a pre and post-processing tool for simulation of ferroelectrics"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
keywords = ["ferroelectrics", "md", "workflow"]
authors = [
{name = "Denan LI", email = "[email protected]"}
]
dependencies = [
"ase",
"pymatgen",
"matplotlib",
"seaborn",
"numpy",
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
homepage = "https://github.com/MoseyQAQ/FerroDispCalc"
repository = "https://github.com/MoseyQAQ/FerroDispCalc"