forked from aiidaplugins/aiida-ase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.json
54 lines (54 loc) · 1.57 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
{
"author": "The AiiDA team",
"author_email": "[email protected]",
"classifiers": [
"Development Status :: 4 - Beta",
"Framework :: AiiDA",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
],
"description": "The official AiiDA plugin for ASE",
"entry_points": {
"aiida.calculations": [
"ase.ase = aiida_ase.calculations.ase:AseCalculation"
],
"aiida.parsers": [
"ase.ase = aiida_ase.parsers.ase:AseParser",
"ase.gpaw = aiida_ase.parsers.ase:GpawParser"
],
"aiida.workflows": [
"ase.gpaw.base = aiida_ase.workflows.base:GpawBaseWorkChain"
]
},
"python_requires": ">=3.7",
"install_requires": [
"aiida-core[atomic_tools]~=1.6"
],
"extras_require": {
"docs": [
"sphinx",
"sphinx-autoapi",
"sphinx-book-theme",
"sphinx-click",
"sphinx-copybutton"
],
"pre-commit": [
"pre-commit",
"pylint"
],
"tests": [
"pgtest",
"pytest",
"pytest-regressions"
]
},
"license": "MIT License",
"name": "aiida-ase",
"url": "https://github.com/aiidaplugins/aiida-ase",
"version": "2.0.0a1"
}