-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
34 lines (31 loc) · 736 Bytes
/
setup.cfg
File metadata and controls
34 lines (31 loc) · 736 Bytes
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
[metadata]
name = log2s3
version = attr: log2s3.version.VERSION
url = https://github.com/wtnb75/log2s3
author = Watanabe Takashi
author_email = wtnb75@gmail.com
license = MIT
license_file = LICENSE
description = log directory management CLI utility
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Topic :: System :: Networking
Programming Language :: Python :: 3
[options]
zip_safe = False
packages = find:
[options.entry_points]
console_scripts =
log2s3=log2s3.main:cli
[flake8]
max-complexity = 10
max-line-length = 120
exclude =
build,
dist,
.git,
__pycache__