-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.json
85 lines (85 loc) · 2.56 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "aiida-gulp",
"author": "Chris Sewell",
"author_email": "[email protected]",
"description": "AiiDA plugin for running the GULP MD code",
"url": "https://github.com/chrisjsewell/aiida-gulp",
"license": "MIT",
"classifiers": [
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Framework :: AiiDA"
],
"version": "0.10.0b5",
"entry_points": {
"console_scripts": [
"gulp_mock = aiida_gulp.tests.mock_gulp:main"
],
"aiida.data": [
"gulp.symmetry = aiida_gulp.data.symmetry:SymmetryData",
"gulp.potential = aiida_gulp.data.potential:EmpiricalPotential"
],
"aiida.calculations": [
"gulp.single = aiida_gulp.calculations.gulp_single:GulpSingleCalculation",
"gulp.optimize = aiida_gulp.calculations.gulp_optimize:GulpOptCalculation",
"gulp.fitting = aiida_gulp.calculations.gulp_fitting:GulpFittingCalculation"
],
"aiida.parsers": [
"gulp.single = aiida_gulp.parsers.parse_single:GulpSingleParser",
"gulp.optimize = aiida_gulp.parsers.parse_opt:GulpOptParser",
"gulp.fitting = aiida_gulp.parsers.parse_fitting:GulpFittingParser"
],
"aiida.workflows": [
],
"aiida.cmdline.data": [
"gulp.potentials = aiida_gulp.cmndline.potentials:potentials"
],
"gulp.potentials": [
"reaxff = aiida_gulp.potentials.reaxff:PotentialWriterReaxff",
"lj = aiida_gulp.potentials.lj:PotentialWriterLJ"
]
},
"include_package_data": true,
"reentry_register": true,
"install_requires": [
"aiida-core==1.0.0b5",
"six >=1.12.0",
"ruamel.yaml",
"jsonextended>=0.7.10",
"jsonschema",
"spglib>=1.10.0,<2.0.0",
"ase>=3.12.0,<3.18.0; python_version < '3'",
"ase>=3.12.0,<4.0.0; python_version >= '3'",
"PyCifRW==4.2.1; python_version < '3'",
"PyCifRW==4.4; python_version >= '3'",
"pathlib2; python_version < '3.4'",
"importlib_resources"
],
"extras_require": {
"testing": [
"mock==2.0.0",
"pgtest==1.2.0",
"sqlalchemy-diff==0.1.3",
"pytest==3.6.3",
"wheel>=0.31",
"coverage",
"pytest-cov",
"pytest-timeout",
"pytest-regressions",
"pytest-notebook; python_version >= '3.5'"
],
"code_style": [
"black==19.3b0",
"flake8<3.8.0,>=3.7.0",
"pre-commit==1.17.0",
"doc8<0.9.0,>=0.8.0"
],
"docs": [
"sphinx>=1.6",
"ipypublish>=0.10.7"
]
}
}