forked from robinzyb/cp2kdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (49 loc) · 1.32 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
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "Cp2kData"
version = "0.7.1"
description = "A Small Package to Postprocess Cp2k Output"
authors = [
{name = "Yong-Bin Zhuang", email = "[email protected]"}
]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)"
]
dependencies = [
"numpy>=1.21.6",
"scipy>=1.5.4",
"matplotlib>=3.3.2",
"ase>=3.20.1",
"cp2k-input-tools",
"dpdata",
"click",
"regex",
"monty",
"pyyaml",
"pycp2k",
"asciichartpy"
]
requires-python = ">=3.8"
keywords = ["cp2k", "cp2kdata"]
[project.urls]
homepage = "https://github.com/robinzyb/cp2kdata"
repository = "https://github.com/robinzyb/cp2kdata"
[project.entry-points.console_scripts]
cp2kdata = "cp2kdata.cli.cmd:cli"
[project.entry-points.'dpdata.plugins']
'cp2kdata/e_f' = "cp2kdata.dpdata_plugin:CP2KEnergyForceFormat"
'cp2kdata/md' = "cp2kdata.dpdata_plugin:CP2KMDFormat"
[tool.setuptools.packages.find]
include = ["cp2kdata*"]
[tool.setuptools.package-data]
cp2kdata = ["matplotlibstyle/*.mplstyle"]