-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (51 loc) · 1.37 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='wallabag-client',
use_scm_version=True,
packages=find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/artur-shaik/wallabag-client',
author='Artur Shaik',
author_email='artur@shaik.link',
description=('A command-line client for the self-hosted '
'`read-it-later` app Wallabag'),
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
setup_requires=[
'pytest-runner==5.1',
'setuptools_scm==3.3.3',
'wheel',
],
install_requires=[
'beautifulsoup4>=4.9.1',
'pycryptodome>=3.9.8',
'requests>=2.11.1',
'click>=8.0',
'click_spinner',
'click_repl>=0.2.0',
'pyxdg',
'colorama>=0.4.3',
'delorean',
'humanize',
'lxml',
'tzlocal',
'tabulate',
'packaging',
'markdownify',
],
tests_require=[
'pytest==4.6.3',
],
entry_points='''
[console_scripts]
wallabag=wallabag.wallabag:cli
'''
)