-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (33 loc) · 1.19 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read().replace('#','')
setup(
name = "crdown",
version = "0.6.4",
author = "Thiago Kenji Okada",
author_email = "[email protected]",
description = ("Crunchyroll video downloader."),
license = "Creative Commons Attribution-ShareAlike 3.0 Unported",
keywords = "video crunchyroll downloader",
url = 'https://github.com/m45t3r/crdown',
packages=["crunchy"],
package_dir={"":"src"},
scripts=['src/crdown'],
install_requires=("appdirs", "beautifulsoup4", "pycrypto", "lxml"),
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Environment :: Console",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Video",
"Topic :: Utilities",
],
)