-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.json
33 lines (33 loc) · 1.06 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
{
"version" : "0.0.1",
"name" : "aiida-mstruc",
"url" : "https://github.com/juDFT/aiida-mstruc",
"license" : "MIT License, see LICENSE.txt file.",
"author" : "JuDFT team",
"description" : "Python package containing an AiiDA Plugin for a magnetic crystal structure.",
"classifiers" : [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Development Status :: 1 - Alpha",
"Environment :: Plugins",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Natural Language :: English"
],
"keywords" : "aiida magnetic structure",
"include_package_data" : true,
"setup_requires" : [
"reentry"
],
"reentry_register" : true,
"install_requires" : [
"aiida-core >= 0.12.0[atomic_tools]"
],
"extras_require" : {
},
"entry_points" : {
"aiida.data" : [
"mstruc.mag_structure = aiida_mstruc.data.mag_structure:MagneticstructureData",
]
}
}