-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.cfg
53 lines (48 loc) · 1.15 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
[metadata]
name = maildump
version = 1.1
license = MIT
description = An SMTP server that makes all received mails accessible via a web interface and REST API.
long_description = file: README.rst
url = https://github.com/ThiefMaster/maildump
download_url = https://github.com/ThiefMaster/maildump
author = Adrian Mönnich
author_email = [email protected]
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
Programming Language :: Python :: 3.12
Environment :: No Input/Output (Daemon)
Environment :: Web Environment
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Topic :: Communications :: Email
Topic :: Software Development
Topic :: System :: Networking
Topic :: Utilities
[options]
packages = find:
zip_safe = false
include_package_data = true
python_requires = >= 3.12
install_requires =
beautifulsoup4
Flask
gevent
html5lib
lockfile
Logbook
passlib
pyasynchat
pyasyncore
python-daemon
pytz
[options.extras_require]
dev =
ruff
twine
wheel
[options.entry_points]
console_scripts =
maildump = maildump_runner.main:main