40 lines
1.1 KiB
INI
40 lines
1.1 KiB
INI
|
[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.10
|
||
|
Programming Language :: Python :: 3.11
|
||
|
Topic :: Software Development :: Build Tools
|
||
|
Topic :: System :: Software Distribution
|
||
|
Topic :: Utilities
|
||
|
|
||
|
[options]
|
||
|
include_package_data = True
|
||
|
packages = rust2rpm, rust2rpm.core
|
||
|
install_requires =
|
||
|
jinja2
|
||
|
pyparsing
|
||
|
requests
|
||
|
tqdm
|
||
|
|
||
|
[options.package_data]
|
||
|
rust2rpm = *.csv, templates/*.spec, templates/*.spec.inc
|
||
|
|
||
|
[options.entry_points]
|
||
|
console_scripts =
|
||
|
rust2rpm = rust2rpm.__main__:main
|
||
|
cargo-inspector = rust2rpm.core.inspector:main
|
||
|
|