-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
79 lines (71 loc) · 1.83 KB
/
Copy pathsetup.cfg
File metadata and controls
79 lines (71 loc) · 1.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[metadata]
name = Faker-Events
version = file: VERSION
description = Generates Events with formatted fake data for streams.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/johnbrandborg/faker-events
author = John Brandborg
author_email = john.brandborg+pypi@pm.me
license = MIT
license_file = LICENSE
platforms = unix, linux, osx, cygwin, win32
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Libraries
Topic :: Software Development :: Testing
Topic :: Utilities
keywords = faker events stream data test generator
project_urls =
Source=https://github.com/johnbrandborg/faker-events
Tracker=https://github.com/johnbrandborg/faker-events/issues
[options]
packages = find:
install_requires =
faker
croniter
python_requires = >=3.6
scripts =
scripts/faker-events
[options.extras_require]
kafka = kafka-python
kinesis = boto3
develop =
flake8
pytest
pytest-cov
[options.packages.find]
exclude =
docs
tests
[tool:pytest]
addopts= --cov=. tests/
[coverage:run]
omit =
env/*
.env/*
venv/*
tests/*
setup.py
[coverage:xml]
output = coverage.xml
[coverage:report]
show_missing = true
fail_under = 60
exclude_lines =
^if __name__ ==
^\s*except KeyboardInterrupt
[flake8]
per-file-ignores = __init__.py:F401