This repository was archived by the owner on Aug 27, 2024. It is now read-only.
generated from Release-Candidate/python_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
69 lines (59 loc) · 1.94 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
[metadata]
name = obs2org
version = attr: obs2org.VERSION
author = Release-Candidate
author_email = [email protected]
description = Converts Obsidian style markdown files to Org-Mode files using pandoc.
keywords = markdown, org-mode, obsidian, converter, pandoc
long_description = file: README.md
long_description_content_type = text/markdown
license_files = LICENSE
url = https://github.com/Release-Candidate/Obs2Org
project_urls =
Bug Tracker = https://github.com/Release-Candidate/Obs2Org/issues
Documentation = https://Obs2Org.readthedocs.io/en/latest/
classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Operating System :: POSIX
Operating System :: POSIX :: BSD
Operating System :: Unix
Operating System :: OS Independent
Environment :: Console
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Topic :: Text Editors :: Emacs
Topic :: Text Processing
Topic :: Text Processing :: Markup
Topic :: Text Processing :: Markup :: Markdown
[options]
packages = obs2org
python_requires = >=3.9
include_package_data = True
[pylama]
linters = mccabe,pydocstyle,pycodestyle,pyflakes,isort,pylint
ignore = D104,D213,D413,D401,D203,D204,D205,D215,D400,D404,D406,D407,D408,D409,D415
[pylama:pycodestyle]
max_line_length = 200
[pylama:pylint]
max_line_length = 200
[pylint]
max_line_length = 200
[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]
ignore = E501,W503
[pydocstyle]
ignore = D104,D213,D413,D401,D203,D204,D205,D215,D400,D404,D406,D407,D408,D409,D415
[pycodestyle]
ignore = W503,E501