forked from lsmo-epfl/EQeq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
100 lines (92 loc) · 2.17 KB
/
setup.cfg
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[metadata]
name=pyeqeq
version=0.0.10
description=Charge equilibration method for crystal structures
long_description=file: README.md
long_description_content_type=text/markdown
project_urls=
source=https://github.com/lsmo-epfl/EQeq
url=https://github.com/lsmo-epfl/EQeq
license=GPL
author=EQeq developers
classifiers=
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Operating System :: OS Independent
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Physics
Topic :: Scientific/Engineering :: Chemistry
Topic :: Software Development :: Libraries :: Python Modules
[options]
include_package_data=True
packages = find_namespace:
install_requires=
pybind11
click
python_requires = >=3.7
package_dir =
=src
[options.entry_points]
console_scripts=
eqeq=pyeqeq.cli:cli
[options.packages.find]
where = src
exclude =
tests
[versioneer]
VCS = git
style = pep440
versionfile_source = eqeq/_version.py
versionfile_build = eqeq/_version.py
tag_prefix =
parentdir_prefix =
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88
#########################
# Flake8 Configuration #
# (.flake8) #
#########################
[flake8]
ignore =
S301 # pickle
S403 # pickle
S404
S603
W503 # Line break before binary operator (flake8 is wrong)
E203 # whitespace before ':'
S101 # Complaining about assert statements
D101 # Docstring missing
D102 # Docstring missing
D103 # Docstring missing
D104 # Docstring missing
D400
exclude =
.tox,
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
tests/fixtures/*,
*.pyc,
*.egg-info,
.cache,
.eggs,
data
max-line-length = 120
max-complexity = 20
import-order-style = pycharm
application-import-names =
pyeqeq
per-file-ignores =
tests/*/*.py:DAR101, D205, D100, DAR101, DAR201, D209