-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
74 lines (61 loc) · 1.38 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[metadata]
name = avroc
version = 0.3.1
description = A library for fast Avro serialization and deserialization
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT License
license_file = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
author = Spencer Nelson
author_email = s@spencerwnelson.com
projecturls =
Bug Tracker = https://github.com/spenczar/avroc/issues
Documentation = https://avroc.readthedocs.io/
Repository = https://github.com/spenczar/avroc
[options]
packages=
avroc
avroc.bin
avroc.codegen
avroc.runtime
install_requires =
python-snappy
zstandard
astunparse; python_version < "3.9.0"
tests_require =
pytest
fastavro
[options.entry_points]
console_scripts =
avroc-cli = avroc.bin.avroc_cli:main
[options.extras_require]
doc =
sphinx
dev =
pytest
fastavro
flake8
black
mypy
pytest
sphinx
[mypy]
python_version = 3.8
warn_return_any = True
mypy_path = devconfig/typestubs
[mypy-plyvel]
ignore_missing_imports = True
[mypy-astropy.*]
ignore_missing_imports = True
[mypy-avro.*]
ignore_missing_imports = True
[mypy-boto3.*]
ignore_missing_imports = True
[mypy-aiobotocore.*]
ignore_missing_imports = True
[flake8]
max-line-length = 88
per-file-ignores = __init__.py:F401