File: setup.cfg

package info (click to toggle)
python-canonicaljson 2.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 132 kB
  • sloc: python: 148; makefile: 3
file content (37 lines) | stat: -rw-r--r-- 966 bytes parent folder | download | duplicates (2)
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
[metadata]
name = canonicaljson
description = Canonical JSON
long_description = file: README.rst
long_description_content_type = text/x-rst
version = attr: canonicaljson.__version__
keywords = json
url = https://github.com/matrix-org/python-canonicaljson
license = Apache License, Version 2.0
author = Matrix.org Team and Contributors
author_email = packages@matrix.org
license_file = LICENSE
classifiers =
    Development Status :: 5 - Production/Stable
    Intended Audience :: Developers
    License :: OSI Approved :: Apache Software License
    Programming Language :: Python :: 2
    Programming Language :: Python :: 3


[options]
zip_safe = true
python_requires = >=3.7

package_dir = =src
packages =
  canonicaljson

[options.package_data]
canonicaljson = py.typed


[flake8]
# see https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# for error codes. The ones we ignore are:
#  E501: Line too long (black enforces this for us)
ignore=E501