-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.json
43 lines (43 loc) · 1.15 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
{
"name": "aiida-icl",
"author": "Chris Sewell",
"author_email": "[email protected]",
"description": "AiiDA plugin interfacing with the Imperial College London cx1 HPC",
"url": "https://github.com/chrisjsewell/aiida-cx1scheduler",
"license": "MIT",
"classifiers": [
"Programming Language :: Python",
"Framework :: AiiDA"
],
"version": "0.3.4",
"entry_points": {
"aiida.schedulers": [
"pbspro_cx1 = aiida_icl.schedulers.pbspro_cx1:PbsproCx1Scheduler"
]
},
"include_package_data": true,
"reentry_register": true,
"install_requires": [
"aiida-core==1.0.0b5",
"ruamel.yaml"
],
"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",
"aiida-crystal17>=0.9.0b5",
"ase<3.18; python_version < '3'"
],
"code_style": [
"flake8<3.8.0,>=3.7.0",
"yapf==0.26.0",
"pre-commit==1.14.4"
]
}}