-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.json
45 lines (45 loc) · 1.17 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
{
"name": "aiida-alloy",
"author": "The AiiDA developers group",
"author_email": "",
"description": "Aiida Workflows for Elastic Constants using Quantum Espresso",
"url": "https://github.com/aiidateam/aiida-alloy",
"license": "MIT",
"classifiers": [
"Programming Language :: Python"
],
"version": "0.1.0a0",
"entry_points": {
"aiida.workflows": [
"elastic = aiida_alloy.workflows.ElasticWorkChain:ElasticWorkChain"
]
},
"include_package_data": true,
"setup_requires": ["reentry"],
"reentry_register": true,
"install_requires": [
"aiida-core>=1.0.0a0; python_version >= '2'",
"six",
"voluptuous"
],
"extras_require": {
"testing": [
"mock==2.0.0",
"pgtest==1.1.0",
"sqlalchemy-diff==0.1.3",
"wheel>=0.31",
"coverage",
"pytest==3.6.3",
"pytest-cov==2.6.0"
],
"pre-commit": [
"pre-commit==1.11.0",
"yapf==0.24.0",
"prospector==0.12.11",
"pylint==1.9.3"
],
"docs": [
"sphinx"
]
}
}