This commit is contained in:
trigg 2020-09-26 21:17:45 +01:00
parent 338cb63c51
commit 91d184b5ff
3 changed files with 1123 additions and 0 deletions

View file

@ -0,0 +1 @@
from .discover_overlay import *

File diff suppressed because it is too large Load diff

42
setup.py Normal file
View file

@ -0,0 +1,42 @@
from setuptools import setup, find_packages
def readme():
return open('README.md','r').read()
setup(
name = 'discover-overlay',
author = 'trigg',
author_email = '',
version = '0.1',
description= 'Voice chat overlay',
long_description = readme(),
long_description_content_type = 'text/markdown',
url = 'https://github.com/trigg/Discover',
packages = find_packages(),
include_package_data = True,
data_files = [
('share/icons', ['discover.png'])
],
install_requires = [
'PyGObject',
'websocket-client',
'pyxdg',
],
entry_points = {
'console_scripts': [
'discover-overlay = discover_overlay.discover_overlay:entrypoint',
]
},
classifiers = [
'Development Status:: 4 - Beta',
'Environment :: X11 Applications :: Gtk',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Communications :: Chat',
'Topic :: Communications :: Conferencing',
],
keywords = 'discord overlay voice linux',
license = 'GPLv3+',
)