-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
38 lines (35 loc) · 1.08 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pdyna"
version = "1.1.0"
description = "Perovskite dynamics analysis package"
authors = [{name = "Xia Liang", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"matplotlib",
"pymatgen",
"ase",
"scipy",
]
[project.optional-dependencies]
datasets = ["pymlff"]
docs = ["sphinx", "sphinx-book-theme", "sphinx_design"]
pdf = ["pycairo"]
[project.urls]
Homepage = "https://pdyna.readthedocs.io/en/latest/"
Documentation = "https://pdyna.readthedocs.io/en/latest/"
Package = "https://pypi.org/project/pdyna/"
Repository = "https://github.com/WMD-group/PDynA"