-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (34 loc) · 1.51 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
from setuptools import setup, find_packages
import versioneer
with open('README.md', 'r') as f:
long_description = f.read()
zip_safe = False
setup(
name='acestream_search',
description='Produces acestream m3u playlist, xml epg or json data.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/vstavrinov/acestream_search',
author='Vladimir Stavrinov',
author_email='[email protected]',
license='GNU General Public License v3 (GPLv3)',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
entry_points={'console_scripts': ['acestream_search=acestream_search.acestream_search:cli']},
install_requires=['lxml'],
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Multimedia :: Video',
'Topic :: Utilities']
)