forked from thiagokokada/livedumper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.18 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
import os
from setuptools import setup
def read(fname):
filename = os.path.join(os.path.dirname(__file__), fname)
return open(filename).read().replace('#', '')
setup(
name="livedumper",
version="0.3.0",
author="Thiago Kenji Okada",
author_email="[email protected]",
description=("Livestreamer stream dumper"),
license="Simplified BSD",
keywords="video streaming downloader dumper",
url='https://github.com/m45t3r/livedumper',
packages=["livedumper"],
package_dir={"": "src"},
scripts=["src/livedumper_cli/livedumper"],
install_requires=("appdirs", "livestreamer", "requests"),
long_description=read("README.rst"),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Environment :: Console",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
"Topic :: Utilities",
],
)