forked from aiidateam/aiida-wannier90
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.json
44 lines (44 loc) · 1.11 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
{
"entry_points": {
"aiida.calculations": [
"wannier90.wannier90 = aiida_wannier90.calculations:Wannier90Calculation"
],
"aiida.parsers": [
"wannier90.wannier90 = aiida_wannier90.parsers:Wannier90Parser"
],
"aiida.data": []
},
"extras_require": {
"test": [
"pytest",
"aiida-pytest",
"pymatgen"
],
"docs": [
"sphinx",
"sphinx-rtd-theme"
],
"dev": [
"pre-commit",
"yapf==0.19"
]
},
"name": "aiida-wannier90",
"license": "MIT",
"author": "Dominik Gresch, Antimo Marrazzo, Daniel Marchand, Giovanni Pizzi & The AiiDA Team.",
"author_email": "[email protected]",
"install_requires": [
"aiida-core>=0.9.1"
],
"version": "1.0.0",
"keywords": "wannier90 AiiDA workflows plugin",
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering :: Physics"
],
"description": "AiiDA Plugin for Wannier90"
}