-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (47 loc) · 1.36 KB
/
setup.py
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
43
44
45
46
47
48
49
50
51
52
from setuptools import setup
ARGS = dict(
name="rust2rpm",
version="5",
description="Convert Rust crates to RPM",
license="MIT",
keywords="rust cargo rpm",
packages=["rust2rpm"],
package_data={
"rust2rpm": [
"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="[email protected]",
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.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Software Distribution",
"Topic :: Utilities",
],
)
if __name__ == "__main__":
setup(**ARGS)