-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
46 lines (41 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
[metadata]
name = dovecot-archive
version = attr: dovecot_archive.__version__
url = https://github.com/Disassembler0/dovecot-archive
license = BSD-3-Clause
author = Disassembler
author_email = [email protected]
description = A doveadm wrapper for common archival tasks.
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Operating System :: POSIX
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Communications :: Email
Topic :: Communications :: Email :: Post-Office
Topic :: System :: Archiving
Topic :: System :: Systems Administration
[options]
packages = find:
package_dir = = src
py_modules = dovecot_archive
python_requires = >= 3.5
setup_requires = python-dateutil
install_requires = python-dateutil
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
dovecot-archive = dovecot_archive:main
[tool:pytest]
testpaths = tests
[coverage:run]
branch = True