forked from hdl/pyHDLParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
39 lines (35 loc) · 1015 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
[metadata]
name = hdlparse
author = Kevin Thibedeau
author_email = [email protected]
url = http://kevinpt.github.io/hdlparse
download_url = http://kevinpt.github.io/hdlparse
description = HDL parser
long_description = file: README.rst
description_file = README.rst
version = attr: hdlparse.__version__
license = MIT
keywords = HDL parser
classifiers =
Development Status :: 5 - Production/Stable
Operating System :: OS Independent
Intended Audience :: Developers
Topic :: Text Processing :: General
Natural Language :: English
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
[options]
packages = hdlparse
py_modules =
install_requires =
include_package_data = True
[pycodestyle]
max_line_length = 120
ignore = E501
[pydocstyle]
ignore = D100,D102,D103,D105,D202,D203,D213,D400,D405,D406,D407,D413,D415
[pylint]
disable =
C0103,C0301,C0103,C0116,R0201,R0801,R0903,R0912,R0913,R0914,R0915,W0702
ignore-docstrings = yes
output-format = colorized