-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
81 lines (78 loc) · 1.87 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
75
76
77
78
79
80
81
[metadata]
name = probeCOCOATek
version = attr: probeCOCOATek.probeCOCOATek.__version__
url = https://github.com/rocaz/probeCOCOATek
author = ROCA
author_email = rocaznet@gmail.com
license = MIT
license_file = LICENSE
keywords = python python3 exposure-notification temporary-exposure-key cocoa cli cocoa-debugging
description = Probe TemporaryExposureKeys and Files of Exposure Notifications System in Japan a.k.a. COCOA.
long_description = file: README.rst
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python
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
Topic :: Utilities
[options]
zip_safe = False
packages = probeCOCOATek,probeCOCOATek.TemporaryExposureKey
python_requires = >= 3.6
setup_requires =
setuptools
cython
pandas
pytest-runner
tests_require =
pytest
pytest-cov
pytest-mock
requests-mock
install_requires =
pytz
protobuf
python-dateutil
requests
urllib3
entry_points = file: entry_points.cfg
[options.packages.find]
where=probeCOCOATek.TemporaryExposureKey
[check-manifest]
ignore =
.coverage
.git
.git/*
.github
.github/*
.pytest_cache
.pytest_cache/*
__pycache__
__pycache__/*
coverage.xml
htmlcov
htmlcov/*
.dependabot
.dependabot/*
.coveragerc
CHANGELOG.rst
CONTRIBUTING.md
.travis.yml
requirements*
tox.ini
.changes
.changes/*
tests
tests/*
scripts
scripts/*
doc
doc/*