forked from lmyslinski/sbd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 1.25 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
from setuptools import find_packages
from setuptools import setup
import sbd
setup(name='sbd',
version=sbd.__version__,
description="Downloads safari online books for offline access",
long_description="A python tool to convert Safari Books Online resources into PDF",
author=sbd.__author__,
author_email='[email protected]',
url='https://github.com/Humblehound',
download_url='https://github.com/Humblehound/sbd/tarball/0.1',
install_requires=[
'lxml', 'pdfkit', 'validators', 'robobrowser'
],
entry_points={
'console_scripts': [
"sbd = sbd.__main__:main",
],
},
classifiers=[
'Operating System :: Microsoft',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
license=sbd.__license__,
packages=find_packages(),
zip_safe=False,
platforms='any')