2022-07-22 15:45:04 +00:00
|
|
|
[metadata]
|
|
|
|
name = rust2rpm
|
|
|
|
version = attr: rust2rpm.__version__
|
|
|
|
description = Generate RPM packages for Rust crates
|
|
|
|
long_description = file: README.md
|
|
|
|
keywords = rpm, cargo, rust
|
|
|
|
license = MIT
|
|
|
|
url = https://pagure.io/fedora-rust/rust2rpm
|
|
|
|
author = Fedora Rust SIG
|
|
|
|
author_email = rust@lists.fedoraproject.org
|
|
|
|
classifiers =
|
|
|
|
Development Status :: 5 - Production/Stable
|
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: MIT License
|
|
|
|
Operating System :: POSIX :: Linux
|
|
|
|
Programming Language :: Python :: 3 :: Only
|
|
|
|
Programming Language :: Python :: 3.11
|
2023-10-04 09:32:35 +00:00
|
|
|
Programming Language :: Python :: 3.12
|
2022-07-22 15:45:04 +00:00
|
|
|
Topic :: Software Development :: Build Tools
|
|
|
|
Topic :: System :: Software Distribution
|
|
|
|
Topic :: Utilities
|
|
|
|
|
|
|
|
[options]
|
|
|
|
include_package_data = True
|
2023-02-11 20:41:57 +00:00
|
|
|
packages = rust2rpm
|
2022-07-22 15:45:04 +00:00
|
|
|
install_requires =
|
2023-12-07 14:05:23 +00:00
|
|
|
cargo2rpm>=0.1.15
|
2022-07-22 15:45:04 +00:00
|
|
|
jinja2
|
2023-10-05 18:03:08 +00:00
|
|
|
jsonschema
|
2022-07-22 15:45:04 +00:00
|
|
|
pyparsing
|
|
|
|
requests
|
2022-07-24 09:21:30 +00:00
|
|
|
termcolor
|
2022-07-22 15:45:04 +00:00
|
|
|
tqdm
|
|
|
|
|
|
|
|
[options.package_data]
|
|
|
|
rust2rpm = *.csv, templates/*.spec, templates/*.spec.inc
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
rust2rpm = rust2rpm.__main__:main
|
|
|
|
|