-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.cfg
81 lines (74 loc) · 2.12 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
[metadata]
name = alectryon
version = attr: alectryon.__init__.__version__
description = A library to process Coq snippets embedded in documents, showing goals and messages for each Coq sentence.
long_description = file: README.rst
url = https://github.com/cpitclaudel/alectryon
long_description_content_type = text/x-rst
author = Clément Pit-Claudel
author_email = clement.pitclaudel@live.com
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Topic :: Software Development :: Compilers
Topic :: Text Editors :: Documentation
Topic :: Text Processing :: Markup :: reStructuredText
[options]
packages = alectryon
python_requires = >=3.6
install_requires =
pygments>=2.14.0
dominate>=2.7.0
beautifulsoup4>=4.11.2
docutils>=0.19
[options.extras_require]
md = myst_parser>=1.0.0
sphinx = sphinx>=6.1.3
full =
myst_parser>=1.0.0
sphinx>=6.1.3
[options.entry_points]
console_scripts =
alectryon=alectryon.cli:main
# rstcoq2html=alectryon.cli:rstcoq2html
# coqrst2html=alectryon.cli:coqrst2html
# rstcoq2latex=alectryon.cli:rstcoq2latex
# coqrst2latex=alectryon.cli:coqrst2latex
pygments.styles =
alectryon = alectryon.pygments_style:AlectryonStyle
[options.package_data]
* =
assets/*
[yapf]
based_on_style = pep8
blank_lines_around_top_level_definition = 1
blank_line_before_module_docstring = True
[pylint]
disable =
consider-using-f-string,
duplicate-code,
fixme,
import-outside-toplevel,
invalid-name,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
multiple-statements,
protected-access,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
unnecessary-lambda-assignment,
wrong-import-position