-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
72 lines (54 loc) · 1.5 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[metadata]
name = file_sync_s3
version = 0.2.4
requires-python = >=3.8
author = Andrei Pozolotin
author-email = [email protected]
summary = Amazon AWS S3 file sync service with inotify watchdog and scheduled expiration
description-file = readme.md
description-content-type = text/markdown; charset=UTF-8
home-page = https://github.com/random-python/file_sync_s3
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
Topic :: System :: Systems Administration
Topic :: Terminals
Topic :: Utilities
keywords =
openrc
systemd
service
inotify
expire
file
sync
amazon
aws
s3
[files]
[options]
packages =
file_sync_s3
file_sync_s3_test
package_dir =
file_sync_s3 = src/main/file_sync_s3
file_sync_s3_test = src/test/file_sync_s3_test
[entry_points]
console_scripts =
# expose services for openrc/systemd
file_sync_s3_install = file_sync_s3.setup:service_install
file_sync_s3_uninstall = file_sync_s3.setup:service_uninstall
file_sync_s3_service = file_sync_s3.service:service_main
[pbr]
warnerrors = True
skip_authors = True
skip_git_sdist = False
skip_changelog = True