-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.cfg
39 lines (35 loc) · 1006 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 = jsonlines
version = 4.0.0
author = wouter bolsterlee
author_email = [email protected]
license = BSD
license_file = LICENSE.rst
description = Library with helpers for the jsonlines file format
long_description = file: README.rst
url = https://github.com/wbolster/jsonlines
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Internet :: Log Analysis
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Logging
Topic :: Utilities
[options]
packages = jsonlines
python_requires = >=3.8
install_requires =
attrs>=19.2.0
[options.package_data]
jsonlines = py.typed
[build_sphinx]
source-dir = doc/
build-dir = doc/build/
[flake8]
max-line-length = 88
extend-ignore = E203