forked from newrelic/newrelic-telemetry-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (55 loc) · 1.63 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]
description = New Relic Telemetry SDK
long_description = file: README.rst
long_description_content_type = text/x-rst
author = New Relic
author_email = open-source@newrelic.com
url = https://newrelic.github.io/newrelic-telemetry-sdk-python
project_urls =
Source=https://github.com/newrelic/newrelic-telemetry-sdk-python
platforms = any
license = Apache-2.0
license_files =
LICENSE
THIRD_PARTY_NOTICES.rst
classifiers =
Development Status :: 3 - Alpha
Topic :: System :: Monitoring
Programming Language :: Python :: Implementation :: PyPy
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
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
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License
[options]
setup_requires =
setuptools_scm
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*
package_dir=
=src
packages=find:
[options.packages.find]
where=src
[bdist_wheel]
universal = 1
[tool:pytest]
addopts = --doctest-modules --strict-markers -v
testpaths = src tests
filterwarnings =
error
xfail_strict = true
markers =
client_args: Extra arguments that are provided when constructing the client.
[flake8]
max-line-length = 88
ignore = W503,E203
[coverage:run]
branch = True
source = newrelic_telemetry_sdk