forked from DisasterAWARE/aws-glue-schema-registry-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
61 lines (55 loc) · 1.52 KB
/
setup.cfg
File metadata and controls
61 lines (55 loc) · 1.52 KB
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
[metadata]
name = aws-glue-schema-registry
version = 1.1.3
description = Use the AWS Glue Schema Registry.
long_description = file: README.md
long_description_content_type = text/markdown
author = Corentin Debost
author_email = develop@disasteraware.com
license = Apache Software License
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries
Typing :: Typed
keywords = aws, glue, schema, registry, avro
project_urls =
Source=https://github.com/DisasterAWARE/aws-glue-schema-registry-python
[options]
packages =
aws_schema_registry
aws_schema_registry.adapter
package_dir =
=src
python_requires = >=3.8
install_requires =
boto3>=1.17.102
typing-extensions>=3.7.4.3;python_version<"3.8"
fastavro>=1.4.5
orjson~=3.6.0;python_version<"3.10.6"
orjson>=3.7.7;python_version>="3.10.6"
fastjsonschema~=2.15
setup_requires =
setuptools
[options.extras_require]
dev =
pytest>=6
flake8>=3
kafka-python =
kafka-python>=2
[mypy]
files = src,tests
[mypy-kafka.*]
ignore_missing_imports = True
[mypy-boto3.*]
ignore_missing_imports = True
[mypy-fastjsonschema.*]
ignore_missing_imports = True