-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
69 lines (51 loc) · 1.42 KB
/
setup.cfg
File metadata and controls
69 lines (51 loc) · 1.42 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
61
62
63
64
65
66
67
68
69
[metadata]
name = mail_serv
version = 0.7.1
requires_python = >=3.8
author = Andrei Pozolotin
author_email = andrei.pozolotin@gmail.com
summary = Mail Service
description_file = readme.md
description_content_type = text/markdown; charset=UTF-8
home_page = https://github.com/random-python/mail_serv
license = Apache-2
classifier =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: System :: Systems Administration
Topic :: Terminals
Topic :: Utilities
keywords =
systemd
dovecot
postfix
getmail
tinc
[files]
[options]
packages =
mail_serv
mail_serv_test
package_dir =
mail_serv = src/main/mail_serv
mail_serv_test = src/test/mail_serv_test
[entry_points]
console_scripts =
# expose services for systemd
mail_serv_arkon = mail_serv.arkon:arkon_service
mail_serv_keeper = mail_serv.keeper:keeper_service
mail_serv_syncer = mail_serv.syncer:syncer_service
[pbr]
warnerrors = True
skip_authors = True
skip_git_sdist = False
skip_changelog = True