-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.json
54 lines (54 loc) · 1.46 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
{
"name": "aiida-spirit",
"author": "The JuDFT Team",
"author_email": "[email protected]",
"description": "AiiDA plugin for the spirit code",
"url": "https://github.com/JuDFTteam/aiida-spirit",
"license": "MIT",
"classifiers": [
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Framework :: AiiDA"
],
"version": "0.2.2",
"entry_points": {
"aiida.calculations": [
"spirit = aiida_spirit.calculations:SpiritCalculation"
],
"aiida.parsers": [
"spirit = aiida_spirit.parsers:SpiritParser"
]
},
"include_package_data": true,
"setup_requires": ["reentry"],
"reentry_register": true,
"install_requires": [
"aiida-core>=1.1.0,<3.0.0",
"numpy",
"pandas",
"masci-tools"
],
"extras_require": {
"testing": [
"pgtest>=1.3.1",
"wheel>=0.31",
"coverage",
"pytest>=3.6",
"pytest-cov",
"spirit"
],
"pre-commit": [
"astroid<2.5",
"pre-commit>=2.2",
"pylint>=2.5.0"
],
"docs": [
"sphinx",
"sphinxcontrib-contentui",
"sphinxcontrib-details-directive; python_version>='3.0'",
"sphinx-rtd-theme"
]
}
}