-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.23 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dfttk"
version = "0.0.0"
authors = [
{ name="Luke A. Myers", email="[email protected]" },
{ name="Nigel Lee En Hew", email="[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Density Functional Theory",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pymatgen>=2024.2.20",
"numpy>=1.26,<2.0.0",
"pandas>=2.1.4",
"matplotlib>=3.8.2",
"plotly>=5.18.0",
"scipy>=1.11.4",
"custodian>=2023.10.9",
"natsort>=8.4.0",
"distinctipy>=1.3.4",
"pymongo>=4.4",
]
keywords = ["VASP", "automation", "thermodynamics", "dfttk", "DFT", "materials", "science", "MongoDB"]
[project.urls]
"Homepage" = "https://github.com/PhasesResearchLab/dfttk"