Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Commit c7fa075

Browse files
committed
Merge pull request #19 from krasmussen/master
Added bdist_rpm support for building an RPM from setup.py
2 parents e3d1e58 + 93b17b6 commit c7fa075

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

setup.py

+21-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,25 @@
1818
entry_points = """
1919
[console_scripts]
2020
flaskswagger = build_swagger_spec:run
21-
"""
21+
""",
22+
options={
23+
'bdist_rpm':{
24+
'build_requires':[
25+
'python',
26+
'python-setuptools',
27+
'python-itsdangerous',
28+
'python-flask',
29+
'python-markupsafe',
30+
'PyYAML',
31+
],
32+
'requires':[
33+
'python',
34+
'python-setuptools',
35+
'python-itsdangerous',
36+
'python-flask',
37+
'python-markupsafe',
38+
'PyYAML',
39+
],
40+
},
41+
},
2242
)

0 commit comments

Comments
 (0)