-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
40 lines (38 loc) · 842 Bytes
/
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
[flake8]
max-complexity=10
max-line-length=79
[nosetests]
verbosity=2
with-coverage=True
cover-branches=True
cover-erase=True
cover-min-percentage=100
cover-package=deepest
[setup]
name=deepest
version_file=CHANGES.txt
author=Mark R. Gollnick ✝
author_email=mark.r.gollnick@gmail.com
maintainer=Mark R. Gollnick ✝
maintainer_email=mark.r.gollnick@gmail.com
url=https://github.com/markgollnick/deepest
license_file=LICENSE.txt
description=Determine the maximum depth and path length within the current (or a specified) directory tree.
long_description_file=README.rst
keywords_list=
deep
deeper
deepest
directory
folder
structure
depth
file
name
filename
path
length
packages_list=deepest
entry_points_dict = {
"console_scripts": ["deepest = deepest.deepest:main"]
}