-
Notifications
You must be signed in to change notification settings - Fork 105
/
setup.py
36 lines (32 loc) · 1.15 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
# __version__ comes into namespace from here
with open(os.path.join("scribdl", "version.py")) as version_file:
exec(version_file.read())
with open("README.rst", "r") as f:
long_description = f.read()
setup(name='scribd-downloader',
version=__version__,
description='Download documents, books and audiobooks off Scribd',
long_description=long_description,
author='Ritiek Malhotra',
author_email='[email protected]',
packages = find_packages(),
entry_points={
'console_scripts': [
'scribdl = scribdl.command_line:_command_line',
]
},
url='https://www.github.com/ritiek/scribd-downloader',
keywords=['scribd-downloader', 'documents', 'command-line', 'python'],
license='MIT',
download_url='https://github.com/ritiek/scribd-downloader/archive/v' + __version__ + '.tar.gz',
classifiers=[],
install_requires=[
'requests >= 2.19.1',
'BeautifulSoup4 >= 4.6.3',
'img2pdf >= 0.3.1',
'md2pdf >= 0.4'
]
)