-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.json
39 lines (39 loc) · 1.18 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
{
"name": "aiida-spex",
"author": "The SPEX Team",
"author_email": "a.chandran@fz-juelich.de",
"description": "AiiDA plugin for SPEX code",
"url": "https://github.com/anoopkcn/aiida-spex",
"license": "MIT",
"classifiers": [
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Framework :: AiiDA"
],
"version": "1.1.2",
"entry_points": {
"aiida.calculations": [
"spex.spex = aiida_spex.calculations.spex:SpexCalculation"
],
"aiida.data": [
"spex.spexinp = aiida_spex.data.spexinp:SpexinpData"
],
"aiida.parsers": [
"spex.spexparser = aiida_spex.parsers.spex:SpexParser"
],
"aiida.workflows": [
"spex.job = aiida_spex.workflows.job:SpexJobWorkchain"
]
},
"include_package_data": true,
"python_requires": ">=3.7",
"setup_requires": ["reentry"],
"reentry_register": true,
"install_requires": [
"aiida-core>=1.0.0b3,<3.0.0",
"pydantic",
"aiida-fleur>=1.2.0,<3.0.0"
]
}