-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
60 lines (51 loc) · 1.13 KB
/
setup.cfg
File metadata and controls
60 lines (51 loc) · 1.13 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
[metadata]
name = cloud-tasks-deferred
description = A deferred library for Google Cloud Tasks
long_description = file: README.rst
url = https://github.com/grktsh/python-cloud-tasks-deferred
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
packages = find:
package_dir =
= src
install_requires =
google-cloud-tasks ~= 1.3
six ~= 1.13
[options.extras_require]
test =
pytest >= 4.4, < 6
pytest-cov ~= 2.6
pytest-mock ~= 1.10
pytest-xdist ~= 1.28
falcon ~= 2.0
[options.packages.find]
where = src
[bdist_wheel]
universal = 1
[coverage:run]
branch = True
parallel = True
source =
cloud_tasks_deferred
omit =
*/cloud_tasks_deferred/__version__.py
[coverage:paths]
source =
src
*/site-packages
[coverage:report]
show_missing = True
[tool:pytest]
testpaths = tests
[flake8]
ignore =
E203
W503