-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
53 lines (48 loc) · 1.65 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
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
import sys
from setuptools import setup
_INSTALL_REQUIRES = [
'Twisted>=16.2.0',
]
if sys.version_info.major == 2:
_INSTALL_REQUIRES.append("service_identity>=16.0.0")
setup(
name='nanodlna',
version='0.3.0',
description='A minimal UPnP/DLNA media streamer',
long_description="""nano-dlna is a command line tool that allows you to
play a local video file in your TV (or any other DLNA compatible device)""",
author='Gabriel Magno',
author_email='[email protected]',
url='https://github.com/gabrielmagno/nano-dlna',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Video',
'Topic :: Utilities'
],
zip_safe=True,
packages=['nanodlna'],
package_dir={'nanodlna': 'nanodlna'},
package_data={'nanodlna': ['templates/*.xml']},
entry_points={
'console_scripts': [
'nanodlna = nanodlna.cli:run',
]
},
install_requires=_INSTALL_REQUIRES
)