forked from MXJK851/AiiDA_UppASD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.json
59 lines (59 loc) · 1.79 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
{
"name": "UppASD_AiiDA_interface",
"author": "Qichen Xu, Anders Bergman, Anna Delin, Jonathan Chico",
"author_email": "qichenx@kth.se",
"description": "Interface for UppASD and AiiDA",
"url": "",
"license": "MIT",
"classifiers": [
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Framework :: AiiDA"
],
"version": "0.0.1",
"entry_points": {
"aiida.data": [
"UppASD_core_data = UppASD_AiiDA.data.core_data:SpinDynamic_core_parameters"
],
"aiida.calculations": [
"UppASD_core_calculations = UppASD_AiiDA.calculation.core_calcs:SpinDynamic_core_calculations"
],
"aiida.parsers": [
"UppASD_core_parsers = UppASD_AiiDA.parsers.core_parser:SpinDynamic_core_parser"
],
"aiida.cmdline.data": [
"UppASD_core_cmdline = UppASD_AiiDA.cmdline.core_cmdline:SpinDynamic_core_cmdline"
]
},
"include_package_data": true,
"setup_requires": ["reentry"],
"reentry_register": true,
"install_requires": [
"aiida-core>=1.1.0,<2.0.0",
"six",
"voluptuous"
],
"extras_require": {
"testing": [
"pgtest~=1.3.1",
"wheel~=0.31",
"coverage",
"pytest~=3.6,<5.0.0",
"pytest-cov"
],
"pre-commit": [
"astroid==2.2.5",
"pre-commit==1.20.0",
"prospector==1.1.7",
"pylint==2.3.1"
],
"docs": [
"sphinx",
"sphinxcontrib-contentui",
"sphinxcontrib-details-directive; python_version>='3.0'",
"sphinx-rtd-theme"
]
}
}