-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.cfg
39 lines (33 loc) · 968 Bytes
/
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
[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 = [email protected]
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
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
[isort]
profile=black
src_paths=src,tests