-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.json
65 lines (65 loc) · 2.04 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "aiida-openmx",
"author": "Austin Zadoks",
"author_email": "[email protected]",
"description": "AiiDA plugin for the OpenMX DFT code.",
"url": "https://github.com/zooks97/aiida-openmx",
"license": "MIT",
"classifiers": [
"Framework :: AiiDA",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 3 - Alpha"
],
"version": "0.2.0",
"entry_points": {
"aiida.calculations": [
"openmx.openmx = aiida_openmx.calculations.openmx:OpenmxCalculation",
"openmx.dosmain = aiida_openmx.calculations.dosmain:DosmainCalculation"
],
"aiida.parsers": [
"openmx.openmx = aiida_openmx.parsers.openmx:OpenmxParser",
"openmx.dosmain = aiida_openmx.parsers.dosmain:DosmainParser"
],
"aiida.workflows": [
"openmx.openmx.dos = aiida_openmx.workflows.dos:DosWorkChain"
]
},
"include_package_data": true,
"setup_requires": ["reentry"],
"reentry_register": true,
"python_requires": ">=3.6",
"install_requires": [
"aiida-core[atomic_tools]>=1.1.0,<2.0.0",
"aiida-pseudo>=0.5.0",
"aiida-basis>=0.1.0a0",
"jsonschema>=3.0.0",
"numpy"
],
"extras_require": {
"testing": [
"pgtest~=1.3.1",
"wheel~=0.31",
"coverage",
"pytest~=6.0",
"pytest-regressions~=1.0",
"pytest-cov"
],
"pre-commit": [
"astroid==2.4.1",
"pre-commit~=2.8.2",
"prospector==1.3.1",
"pylint==2.5.3",
"pydocstyle>=2.0.0"
],
"docs": [
"sphinx",
"sphinxcontrib-contentui",
"sphinxcontrib-details-directive; python_version>='3.0'",
"sphinx-rtd-theme"
]
}
}