-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (22 loc) · 956 Bytes
/
setup.py
File metadata and controls
28 lines (22 loc) · 956 Bytes
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
"""Setup script for maildaemon package."""
import boilerplates.setup
class Package(boilerplates.setup.Package):
"""Package metadata."""
name = 'maildaemon'
description = 'Multi-server mail filtering daemon supporting IMAP, POP and SMTP.'
url = 'https://github.com/mbdevpl/maildaemon'
classifiers = [
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities',
'Typing :: Typed']
keywords = ['e-mail', 'filter', 'daemon', 'imap', 'pop', 'smtp']
entry_points = {'console_scripts': ['maildaemon = maildaemon.__main__:main']}
if __name__ == '__main__':
Package.setup()