forked from aiidateam/aiida-cp2k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.json
29 lines (29 loc) · 899 Bytes
/
setup.json
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
{
"version": "0.7",
"name": "aiida_cp2k",
"url": "https://github.com/cp2k/aiida-cp2k",
"license": "MIT License",
"author": "Ole Schütt, Edward Ditler, Aliaksandr Yakutovich, Patrick Seewald, Tiziano Müller, Andreas Glöss, Leonid Kahle",
"author_email": "ole.schuett@cp2k.org",
"description": "The CP2K plugin for the AiiDA workflow and provenance engine.",
"classifiers": [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Development Status :: 4 - Beta"
],
"install_requires": [
"aiida",
"ase"
],
"entry_points": {
"aiida.calculations": [
"cp2k = aiida_cp2k.calculations:Cp2kCalculation"
],
"aiida.parsers": [
"cp2k = aiida_cp2k.parsers:Cp2kParser"
]
},
"data_files": [
[".", ["setup.json"]]
]
}