-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
35 lines (33 loc) · 1.05 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
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='acestream-launcher',
version='2.1.0',
author='Jonian Guveli',
author_email='[email protected]',
description='Open AceStream links with a Media Player of your choice',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/jonian/acestream-launcher',
packages=setuptools.find_packages(),
data_files=[
('share/applications', ['acestream-launcher.desktop'])
],
install_requires=[
'acestream>=0.2.0'
],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: POSIX :: Linux'
],
project_urls={
'Bug Reports': 'https://github.com/jonian/acestream-launcher/issues',
'Source': 'https://github.com/jonian/acestream-launcher',
},
entry_points={
'console_scripts': ['acestream-launcher = acestream_launcher.launcher:main']
}
)