Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
stustanet
videoscreen
Commits
c331073d
Commit
c331073d
authored
Feb 04, 2016
by
Jonas Jelten
Browse files
setup.py support added
parent
24beccfd
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
c331073d
...
...
@@ -16,3 +16,8 @@ __pycache__
# workflow
*.orig
# distutils
build/
dist/
MANIFEST
setup.py
0 → 100755
View file @
c331073d
#!/usr/bin/env python3
from
distutils.core
import
setup
setup
(
name
=
'videoscreen'
,
version
=
'1.0'
,
description
=
'play links submitted via netcat with mpv'
,
long_description
=
(
"A small daemon which waits for incoming media urls.
\n
"
"These will be played with the mpv player.
\n
"
"This allows people e.g. in Hackerspaces to submit links "
"to watch on some projector."
),
author
=
'Jonas Jelten'
,
author_email
=
'jj@stusta.net'
,
url
=
'https://github.com/SFTtech/videoscreen'
,
packages
=
[
'videoscreen'
],
license
=
'AGPL3+'
,
platforms
=
[
'Linux'
,
],
classifiers
=
[
(
"License :: OSI Approved :: "
"GNU Affero General Public License v3 or later (AGPLv3+)"
),
"Topic :: Multimedia :: Video :: Display"
,
"Topic :: Multimedia :: Sound/Audio :: Players"
,
],
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment