-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
30 lines (25 loc) · 816 Bytes
/
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
from setuptools import setup
from desktopstreamer import __version__ as version
with open('README.rst') as fh:
long_description = fh.read()
setup(
name='DesktopStreamer',
version=version,
description='Capture A/V from the desktop and stream it to the local network.',
long_description=long_description,
author='Brutus [dmc]',
author_email='[email protected]',
url='https://github.com/brutus/Desktop-Streamer/',
license='GPLv3',
packages=['desktopstreamer'],
data_files=[
# ('share/icons/hicolor/scalable/apps', ['data/desktopstreamer.svg']),
('share/icons/hicolor/64x64/apps', ['data/desktopstreamer.png']),
('share/applications', ['data/StreamDesktop.desktop'])
],
entry_points={
'console_scripts': [
'stream_desktop=desktopstreamer:main',
],
},
)