forked from DataDog/datadog-api-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
88 lines (80 loc) · 2.09 KB
/
setup.cfg
File metadata and controls
88 lines (80 loc) · 2.09 KB
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
82
83
84
85
86
87
88
# Unless explicitly stated otherwise all files in this repository are licensed
# under the 3-clause BSD style license (see LICENSE).
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2019 Datadog, Inc.
[metadata]
name = datadog-api-client
description = Collection of all Datadog Public endpoints
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
openapi
api
client
openapi-generator
datadog
author = Datadog, Inc.
author_email = packages@datadoghq.com
url = https://github.com/DataDog/datadog-api-client-python
license = BSD
platforms = any
classifiers=
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
project_urls =
Bug Tracker = https://github.com/DataDog/datadog-api-client-python/issues
Documentation = https://datadoghq.dev/datadog-api-client-python/
Source Code = https://github.com/DataDog/datadog-api-client-python
[options]
packages = find:
package_dir=
=src
include_package_data = True
python_requires = >=3.6
install_requires =
urllib3>=1.15
six>=1.10
certifi
python-dateutil
nulltype
setup_requires =
setuptools>=30.3.0
setuptools_scm
[options.extras_require]
apm =
ddtrace>=0.45.0
tests =
glom
flexmock>=0.10.4
freezegun
jinja2
pytest
pytest-bdd>=4.0.1
pytest-black
pytest-cov
pytest-randomly
pytest-recording
python-dateutil
[options.packages.find]
exclude = tests
where=src
[tool:pytest]
markers =
dd_tag: add custom tags to span
addopts = --cov=datadog_api_client --cov-config .coveragerc --cov-report=term-missing
# addopts = --black --cov=datadog_api_client --cov-config .coveragerc --cov-report=term-missing
[flake8]
max-line-length = 120
extend-ignore = E203
[tool:black]
line-length = 120
[tool:isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 120