-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.json
55 lines (55 loc) · 1.53 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
{
"name": "aiida-python",
"author": "Ot(t)o Kohulák",
"author_email": "[email protected]",
"description": "AiiDA Python",
"url": "https://todo.nothing/",
"license": "MIT",
"classifiers": [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Framework :: AiiDA"
],
"version": "0.0.6",
"entry_points": {
"aiida.calculations": [
"python.calc = aiida_python.calc:CalcJobPython"
],
"aiida.parsers": [
"python.parser = aiida_python.parser:ParserPython"
],
"aiida_python.serializers": [
"int = aiida_python.serializers:SerializerInt",
"float = aiida_python.serializers:SerializerFloat",
"str = aiida_python.serializers:SerializerStr",
"list = aiida_python.serializers:SerializerList",
"arraydata = aiida_python.serializers:SerializerArrayData"
],
"aiida.data": [
]
},
"include_package_data": true,
"setup_requires": ["reentry"],
"reentry_register": true,
"install_requires": [
"aiida-core>=2.1.0"
],
"extras_require": {
"testing": [
"pytest",
"pgtest",
"Pillow>=8.1.2"
],
"pre-commit": [
"pre-commit~=2.2",
"pylint>=2.5.0,<2.9"
],
"docs": [
"sphinx",
"sphinx-rtd-theme"
]
}
}