blob: fb9c9b1d856b9a5c007e925d4698b0a2537f4f84 [file] [log] [blame]
Max Rasskazov8a071162016-02-24 11:55:00 +03001[metadata]
2name = trsync
Alexey Golubev6f55d7e2016-03-23 16:16:29 +03003version = 0.5
Max Rasskazov8a071162016-02-24 11:55:00 +03004summary = rsync wrapper that implements transactional synchronization with remote location
5description-file =
6 README.rst
7author = OpenStack
8author-email = openstack-dev@lists.openstack.org
9home-page = http://www.openstack.org/
10classifier =
11 Environment :: OpenStack
12 Intended Audience :: Information Technology
13 Intended Audience :: System Administrators
14 License :: OSI Approved :: Apache Software License
15 Operating System :: POSIX :: Linux
16 Programming Language :: Python
17 Programming Language :: Python :: 2
18 Programming Language :: Python :: 2.7
19 Programming Language :: Python :: 3
20 Programming Language :: Python :: 3.3
21 Programming Language :: Python :: 3.4
22
23[files]
24packages =
25 trsync
26
27[build_sphinx]
28source-dir = doc/source
29build-dir = doc/build
30all_files = 1
31
32[upload_sphinx]
33upload-dir = doc/build/html
34
35[compile_catalog]
36directory = trsync/locale
37domain = trsync
38
39[update_catalog]
40domain = trsync
41output_dir = trsync/locale
42input_file = trsync/locale/trsync.pot
43
44[extract_messages]
45keywords = _ gettext ngettext l_ lazy_gettext
46mapping_file = babel.cfg
Alexey Golubev6f55d7e2016-03-23 16:16:29 +030047output_file = trsync/locale/trsync.pot
48
49[entry_points]
50console_scripts =
Ivan Bogomazov38523242016-07-19 11:57:34 +030051 trsync=trsync.cli.app:main
Alexey Golubev6f55d7e2016-03-23 16:16:29 +030052
53trsync =
Ivan Bogomazov38523242016-07-19 11:57:34 +030054 push = trsync.cli.commands.push:PushCmd
55 symlink = trsync.cli.commands.symlink:SymlinkCmd
56 remove = trsync.cli.commands.remove:RemoveCmd
57 get-target = trsync.cli.commands.get_target:GetTargetCmd
Alexey Golubev6f55d7e2016-03-23 16:16:29 +030058
59[global]
60setup-hooks =
61 pbr.hooks.setup_hook
62 setup_hooks.setup_hook