Max Rasskazov | 8a07116 | 2016-02-24 11:55:00 +0300 | [diff] [blame] | 1 | [metadata] |
| 2 | name = trsync |
Alexey Golubev | 6f55d7e | 2016-03-23 16:16:29 +0300 | [diff] [blame] | 3 | version = 0.5 |
Max Rasskazov | 8a07116 | 2016-02-24 11:55:00 +0300 | [diff] [blame] | 4 | summary = rsync wrapper that implements transactional synchronization with remote location |
| 5 | description-file = |
| 6 | README.rst |
| 7 | author = OpenStack |
| 8 | author-email = openstack-dev@lists.openstack.org |
| 9 | home-page = http://www.openstack.org/ |
| 10 | classifier = |
| 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] |
| 24 | packages = |
| 25 | trsync |
| 26 | |
| 27 | [build_sphinx] |
| 28 | source-dir = doc/source |
| 29 | build-dir = doc/build |
| 30 | all_files = 1 |
| 31 | |
| 32 | [upload_sphinx] |
| 33 | upload-dir = doc/build/html |
| 34 | |
| 35 | [compile_catalog] |
| 36 | directory = trsync/locale |
| 37 | domain = trsync |
| 38 | |
| 39 | [update_catalog] |
| 40 | domain = trsync |
| 41 | output_dir = trsync/locale |
| 42 | input_file = trsync/locale/trsync.pot |
| 43 | |
| 44 | [extract_messages] |
| 45 | keywords = _ gettext ngettext l_ lazy_gettext |
| 46 | mapping_file = babel.cfg |
Alexey Golubev | 6f55d7e | 2016-03-23 16:16:29 +0300 | [diff] [blame] | 47 | output_file = trsync/locale/trsync.pot |
| 48 | |
| 49 | [entry_points] |
| 50 | console_scripts = |
Ivan Bogomazov | 3852324 | 2016-07-19 11:57:34 +0300 | [diff] [blame^] | 51 | trsync=trsync.cli.app:main |
Alexey Golubev | 6f55d7e | 2016-03-23 16:16:29 +0300 | [diff] [blame] | 52 | |
| 53 | trsync = |
Ivan Bogomazov | 3852324 | 2016-07-19 11:57:34 +0300 | [diff] [blame^] | 54 | 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 Golubev | 6f55d7e | 2016-03-23 16:16:29 +0300 | [diff] [blame] | 58 | |
| 59 | [global] |
| 60 | setup-hooks = |
| 61 | pbr.hooks.setup_hook |
| 62 | setup_hooks.setup_hook |