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
|
[metadata]
name = ostree-push
version = attr: otpush.VERSION
author = Dan Nicholson
author_email = dbn@endlessos.org
description = Push and receive OSTree commits
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/dbnicholson/ostree-push
license_file = COPYING
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Development Status :: 5 - Production/Stable
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Operating System :: POSIX
Topic :: Software Development :: Build Tools
Topic :: System :: Archiving :: Mirroring
Topic :: System :: Archiving :: Packaging
Topic :: System :: Software Distribution
[options]
packages = otpush
scripts = scripts/ostree-receive-shell
install_requires =
PyGObject
PyYAML
python_requires = >=3.7
[options.entry_points]
console_scripts =
ostree-push = otpush.push:main
ostree-receive = otpush.receive:compat_main
ostree-receive-1 = otpush.receive:main
ostree-receive-0 = otpush.receive_legacy:main
[egg_info]
tag_build =
tag_date = 0
|