24255ef3ee
Signed-off-by: Igor Gnatenko <ignatenkobrain@fedoraproject.org>
52 lines
1.3 KiB
Python
52 lines
1.3 KiB
Python
from setuptools import setup
|
|
|
|
ARGS = dict(
|
|
name="rust2rpm",
|
|
version="9",
|
|
description="Convert Rust crates to RPM",
|
|
license="MIT",
|
|
keywords="rust cargo rpm",
|
|
|
|
packages=["rust2rpm"],
|
|
package_data={
|
|
"rust2rpm": [
|
|
"spdx_to_fedora.csv",
|
|
"templates/*.spec",
|
|
"templates/*.spec.inc",
|
|
],
|
|
},
|
|
entry_points={
|
|
"console_scripts": [
|
|
"rust2rpm = rust2rpm.__main__:main",
|
|
"cargo-inspector = rust2rpm.inspector:main",
|
|
],
|
|
},
|
|
install_requires=[
|
|
# Metadata parser
|
|
"semantic_version",
|
|
|
|
# CLI tool
|
|
"jinja2",
|
|
"requests",
|
|
"tqdm",
|
|
],
|
|
|
|
author="Igor Gnatenko",
|
|
author_email="ignatenkobrain@fedoraproject.org",
|
|
url="https://pagure.io/fedora-rust/rust2rpm",
|
|
classifiers=[
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Topic :: Software Development :: Build Tools",
|
|
"Topic :: System :: Software Distribution",
|
|
"Topic :: Utilities",
|
|
],
|
|
)
|
|
|
|
if __name__ == "__main__":
|
|
setup(**ARGS)
|