forked from gabrielmagno/nano-dlna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (47 loc) · 1.67 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
#!/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.1.4',
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.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Video',
'Topic :: Utilities'
],
packages=['nanodlna'],
package_dir={'nanodlna': 'nanodlna'},
package_data={'nanodlna': ['templates/*.xml']},
entry_points={
'console_scripts': [
'nanodlna = nanodlna.cli:run',
]
},
install_requires=install_requires
)