forked from aiidateam/aiida-cp2k
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.json
54 lines (54 loc) · 1.58 KB
/
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
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
{
"author": "The AiiDA team",
"author_email": "[email protected]",
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Framework :: AiiDA",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3"
],
"description": "The official AiiDA plugin for CP2K.",
"install_requires": [
"aiida-core>=1.1.0,<2.0.0",
"ase",
"ruamel.yaml>=0.16.5"
],
"entry_points": {
"aiida.calculations": [
"cp2k = aiida_cp2k.calculations:Cp2kCalculation"
],
"aiida.parsers": [
"cp2k_base_parser = aiida_cp2k.parsers:Cp2kBaseParser",
"cp2k_advanced_parser = aiida_cp2k.parsers:Cp2kAdvancedParser"
],
"aiida.workflows": [
"cp2k.base = aiida_cp2k.workchains:Cp2kBaseWorkChain"
]
},
"extras_require": {
"test": [
"pgtest==1.2.0",
"pytest>=4.4,<5.0.0",
"pytest-cov>=2.6.1,<3.0.0",
"coverage"
],
"pre-commit":[
"pre-commit==1.18.3",
"yapf==0.28.0",
"prospector==1.1.7",
"pylint==2.3.1"
],
"docs": [
"sphinx",
"sphinx-rtd-theme",
"sphinxcontrib-contentui",
"sphinxcontrib-details-directive"
]
},
"license": "MIT License",
"name": "aiida_cp2k",
"url": "https://github.com/aiidateam/aiida-cp2k",
"version": "1.1.0"
}