-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
61 lines (55 loc) · 1.78 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
[metadata]
name = kafkaconnect
description = Python client for managing Kafka connectors.
author = Association of Universities for Research in Astronomy, Inc. (AURA)
author_email = [email protected]
long_description = file: README.rst, CHANGELOG.rst, LICENSE
long_description_content_type = text/x-rst
url = https://github.com/lsst-sqre/kafka-connect-manager
project_urls =
Change log = https://github.com/lsst-sqre/kafka-connect-manager/blob/master/CHANGELOG.rst
Source code = https://github.com/lsst-sqre/kafka-connect-manager
Issue tracker = https://github.com/lsst-sqre/kafka-connect-manager/issues
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.11
Natural Language :: English
Operating System :: POSIX
keywords =
lsst
[options]
zip_safe = False
include_package_data = True
package_dir =
= src
packages=find:
python_requires = >=3.11
setup_requires =
setuptools_scm
# Use requirements/main.in for runtime dependencies instead of install_requires
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
kafkaconnect = kafkaconnect.cli:main
[flake8]
max-line-length = 79
# E203: whitespace before :, flake8 disagrees with PEP-8
# W503: line break after binary operator, flake8 disagrees with PEP-8
ignore = E203, W503
docstring-convention = numpy
[mypy]
disallow_untyped_defs = True
disallow_incomplete_defs = True
ignore_missing_imports = True
show_error_codes = True
strict_equality = True
warn_redundant_casts = True
warn_unreachable = True
warn_unused_ignores = True
[tool:pytest]
markers =
docker: marks tests that require docker-compose.yml set up (deselect with '-m "not docker"')