-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (46 loc) · 1.26 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
[metadata]
name = mailqueue-runner
version = file: VERSION.txt
author = Felix Schwarz
author_email = [email protected]
url = https://github.com/FelixSchwarz/mailqueue-runner
license = MIT and Python
license_file = LICENSE.txt
long_description = file:README.md
long_description_content_type = text/markdown
[options]
python_requires = >= 3.6
packages = find_namespace:
zip_safe = false
include_package_data = true
install_requires =
boltons
docopt
portalocker
[options.extras_require]
plugins =
PuzzlePluginSystem >= 0.6.0 # >= 0.6.0: .terminate_all_activated_plugins()
colors =
colorama
# "testutils" provides helpers to simplify testing (also usable by 3rd party code)
testutils =
# >= 0.8: SMTPCommandParser
pymta >= 0.8
schwarzlog
testing =
%(plugins)s
%(testutils)s
dotmap
time-machine; implementation_name != 'pypy'
pytest
setuptools
testfixtures
[options.entry_points]
console_scripts =
mq-mail = schwarz.mailqueue.cli:mq_mail_main
mq-run = schwarz.mailqueue.cli:one_shot_queue_run_main
mq-send-test = schwarz.mailqueue.cli:send_test_message_main
mq-sendmail = schwarz.mailqueue.cli:mq_sendmail_main
[options.packages.find]
exclude =
tests