-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.36 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (35 loc) · 1.36 KB
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
from __future__ import print_function
from setuptools import setup
from dlffmpeg import __version__
setup(
name = 'dlffmpeg',
version = __version__,
description = 'Download and install ffmpeg, cross-platform.',
author = 'iwconfig',
author_email = 'snelhingst@gmail.com',
url = 'https://github.com/iwconfig/dlffmpeg',
py_modules=['dlffmpeg'],
install_requires=[
'cursor>=1.1.0',
'requests>=2.0.0'
],
scripts = ['bin/dlffmpeg'],
license = 'MIT',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Video',
'Topic :: System :: Installation/Setup',
'Topic :: Utilities']
)