forked from apetresc/wallabag-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 881 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='wallabag-cli',
use_scm_version=True,
packages=find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/apetresc/wallabag-cli',
author='Michael Scholz',
description='A command-line client for the self-hosted read-it-later app Wallabag',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
setup_requires=[
'pytest-runner==5.1',
'setuptools_scm==3.3.3',
'wheel',
],
install_requires=[
'beautifulsoup4>=4.5.1',
'pycrypto>=2.6.1',
'requests>=2.11.1',
],
tests_require=[
'pytest==4.6.3',
],
entry_points='''
[console_scripts]
wallabag=wallabag.wallabag:main
'''
)