-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
57 lines (54 loc) · 1.6 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
[metadata]
name = dco-check
version = attr: dco_check.__version__
url = https://github.com/christophebedard/dco-check/
project_urls =
Changelog = https://github.com/christophebedard/dco-check/milestones?state=closed
GitHub = https://github.com/christophebedard/dco-check/
author = Christophe Bedard
author_email = [email protected]
maintainer = Christophe Bedard
maintainer_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Software Development :: Testing
license = Apache License, Version 2.0
license_files = LICENSE
description = Simple DCO check script to be used in any CI.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = dco, check
[options]
packages = find:
tests_require =
flake8
flake8-blind-except
flake8-builtins
flake8-class-newline
flake8-comprehensions
flake8-deprecated
flake8-docstrings
flake8-import-order
flake8-quotes
mypy
pep8-naming
pylint
pytest
pytest-cov
zip_safe = true
[options.entry_points]
console_scripts =
dco-check = dco_check.dco_check:main
[flake8]
import-order-style = google
max-line-length = 99