aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: d81c578101d38be48a6c5ed5ac89488a31d14f37 (plain)
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
#!/usr/bin/env python

from distutils.core import setup
from setuptools import find_packages

setup(
	name="storm",
	version="1.0",
	install_requires=[
		"pygst",
		"pygtk",
        "pyrobovero",
	],
	author="Kevin Strasser",
	author_email="kevin.strasser@linux.intel.com",
	long_description=open("README").read(),
	license="MIT",
	url="http://git.yoctoproject.org/storm",
	packages = find_packages(),
	scripts=['storm-server', 'storm-client'],
	data_files=[
		('/etc/storm', ['packaging/files/storm.conf']),
		('/etc/init.d', ['packaging/files/storm']),
	],
)