-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.cfg
43 lines (40 loc) · 1023 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
40
41
42
43
[metadata]
name = pyarn
version = 0.3.0
description = Yarn JS package manager lockfile parser
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/containerbuildsystem/pyarn
license = GPLv3+
license_files = LICENSE
platform = any
author = Red Hat, Inc.
author_email = [email protected]
keywords =
Yarn
JavaScript
lockfile
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
[options]
packages = find:
python_requires = >=3.7
install_requires =
ply
[flake8]
max-line-length = 100
doctests = True
exclude = venv,.tox,pyarn/parsetab.py,pyarn/parser.out
show-source = True
extend-ignore =
# whitespace before ':', conflicts with black
E203
[isort]
profile = black
line_length = 100