-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
45 lines (40 loc) · 1.37 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
import os
from setuptools import setup
def long_description():
os.system('pandoc --from=markdown --to=rst --output=README.rst README.md')
readme_fn = os.path.join(os.path.dirname(__file__), 'README.rst')
if os.path.exists(readme_fn):
with open(readme_fn) as f:
return f.read()
else:
return 'not available'
setup(
name='gnomecast',
version=__import__('gnomecast').__version__,
description='A native Linux GUI for Chromecasting local files.',
long_description=long_description(),
author='Derek Anderson',
author_email='[email protected]',
url='https://github.com/keredson/gnomecast',
py_modules=['gnomecast'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
install_requires=['pychromecast','bottle','pycaption','paste','html5lib'],
data_files=[
('share/icons/hicolor/16x16/apps', ['icons/gnomecast_16.png']),
('share/icons/hicolor/48x48/apps', ['icons/gnomecast_48.png']),
('share/icons/hicolor/scalable/apps', ['icons/gnomecast.svg']),
('share/applications', ['gnomecast.desktop'])
],
entry_points={
'gui_scripts': [
'gnomecast = gnomecast:main',
]
}
)