added rpm to deploy
This commit is contained in:
parent
5e306e0dd8
commit
c59a49e0c9
3 changed files with 23 additions and 4 deletions
|
@ -1,25 +0,0 @@
|
|||
#!/usr/bin/env python2
|
||||
|
||||
import os
|
||||
from distutils.core import setup
|
||||
|
||||
files = []
|
||||
for dirname, dirnames, filenames in os.walk('bungloo/WebKit'):
|
||||
for filename in filenames:
|
||||
files += [os.path.join(dirname, filename)[8:]]
|
||||
|
||||
for dirname, dirnames, filenames in os.walk('bungloo/images'):
|
||||
for filename in filenames:
|
||||
files += [os.path.join(dirname, filename)[8:]]
|
||||
|
||||
setup(
|
||||
name = "bungloo",
|
||||
version = "{VERSION}",
|
||||
author = "Jeena Paradies",
|
||||
author_email = "spam@jeenaparadies.net",
|
||||
url = "http://jabs.nu/bungloo",
|
||||
license = "BSD license",
|
||||
packages = ['bungloo'],
|
||||
package_data = {"bungloo": files},
|
||||
scripts = ["bin/bungloo"]
|
||||
)
|
Reference in a new issue