-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.json
68 lines (68 loc) · 1.85 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
{
"name": "aiida-abacus",
"author": "PorYoung",
"author_email": "[email protected]",
"description": "workflow for abacus",
"url": "https://github.com/PorYoung/aiida-abacus",
"license": "MIT",
"classifiers": [
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Framework :: AiiDA"
],
"version": "0.1.0a0",
"entry_points": {
"aiida.data": [
"abacus = aiida_abacus.data.parameters:AbacusParameters"
],
"aiida.calculations": [
"abacus.base = aiida_abacus.calculations.base:BaseCalculation"
],
"aiida.workflows": [
"abacus.relax = aiida_abacus.workflows.relax:RealxWorkChain"
],
"aiida.parsers": [
"abacus = aiida_abacus.parsers:DiffParser"
],
"aiida.cmdline.data": [
"abacus = aiida_abacus.cli:data_cli"
],
"console_scripts": [
"aiida-abacus = aiida_abacus.cli:cmd_root"
]
},
"include_package_data": true,
"setup_requires": [
"reentry"
],
"reentry_register": true,
"install_requires": [
"aiida-core>=1.1.0,<2.0.0",
"sqlalchemy<1.4",
"six",
"psycopg2-binary<2.9",
"voluptuous",
"ase"
],
"extras_require": {
"testing": [
"pgtest~=1.3.1",
"wheel~=0.31",
"coverage",
"pytest~=6.0",
"pytest-cov"
],
"pre-commit": [
"pre-commit~=2.2",
"pylint>=2.5.0,<2.9"
],
"docs": [
"sphinx",
"sphinxcontrib-contentui",
"sphinxcontrib-details-directive; python_version>='3.0'",
"sphinx-rtd-theme"
]
}
}