-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.json
48 lines (48 loc) · 1.32 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-supercell",
"author": "Pezhman Zarabadi-Poor",
"author_email": "[email protected]",
"description": "AiiDA Plugin for Supercell program",
"url": "https://github.com/pzarabadip/aiida-supercell",
"license": "MIT License",
"classifiers": [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
],
"version": "1.0.1",
"setup_requires": ["reentry"],
"reentry_register": true,
"install_requires": [
"aiida-core[atomic_tools]>=1.0.0,<2.0"
],
"entry_points": {
"aiida.calculations": [
"supercell = aiida_supercell.calculations:SupercellCalculation"
],
"aiida.parsers":[
"supercell = aiida_supercell.parsers:SupercellParser"
]
},
"data_files": [
[".", ["setup.json"]]
],
"extras_require": {
"testing": [
"pgtest==1.2.0",
"pytest>=4.4,<5.0.0",
"pytest-cov>=2.6.1,<3.0.0"
],
"pre-commit": [
"pre-commit==2.0.1",
"yapf==0.28.0",
"prospector==1.2.0",
"pylint==2.4.4"
],
"docs": [
"sphinx",
"sphinxcontrib-contentui",
"sphinxcontrib-details-directive",
"sphinx-rtd-theme"
]
}
}