-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.json
48 lines (48 loc) · 1.4 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
{
"name": "aiida-porousmaterials",
"author": "Pezhman Zarabadi-Poor",
"author_email": "[email protected]",
"description": "AiiDA plugin for PorousMaterials code",
"url": "https://github.com/pzarabadip/aiida-porousmaterials",
"license": "MIT",
"classifiers": [
"Environment :: Plugins",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Framework :: AiiDA"
],
"version": "1.0.0a3",
"setup_requires": ["reentry"],
"install_requires": [
"aiida_core[atomic_tools] >= 1.0.0, <2.0.0",
"pandas"
],
"entry_points": {
"aiida.calculations": [
"porousmaterials = aiida_porousmaterials.calculations:PorousMaterialsCalculation"
],
"aiida.parsers": [
"porousmaterials = aiida_porousmaterials.parser:PorousMaterialsParser"
]
},
"reentry_register": true,
"data_files": [
[".", ["setup.json"]]
],
"extras_require": {
"test": [
"pgtest==1.2.0",
"pytest>=4.4,<5.0.0",
"pytest-cov>=2.6.1,<3.0.0"
],
"pre-commit": [
"pre-commit==1.18.3",
"yapf==0.28.0",
"prospector==1.1.7",
"pylint==2.3.1"
]
}
}