forked from nucleic/atom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
44 lines (42 loc) · 1.52 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
# --------------------------------------------------------------------------------------
# Copyright (c) 2021, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
# --------------------------------------------------------------------------------------
# FIXME remove once setuptool supports PEP 621
[metadata]
name = atom
author = The Nucleic Development Team
author_email = sccolbert@gmail.com
maintainer_email = m.dartiailh@gmail.com
url = https://github.com/nucleic/atom
description = Memory efficient Python objects
long_description = file: README.rst
long_description_content_type = text/x-rst
license= BSD
classifiers =
# https://pypi.org/pypi?%3Aaction=list_classifiers
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
platforms = Linux, Windows, Mac
# flake8 is the only tool not supporting pyproject.toml config
[flake8]
exclude =
.git,
__pycache__,
docs/source/conf.py,
build,
dist,
ignore = E203, E266, E501, W503, E731
# line length is intentionally set to 80 here because atom uses Bugbear
# See https://github.com/psf/black/blob/master/README.md#line-length for more details
max-line-length = 80
max-complexity = 19
select = B,C,E,F,W,T4,B9