pocket-cli/setup.py
Badri Sunderarajan f0f1e800ae
Upgrade dependencies to latest versions
This is because, at least in Python 12, the older dependencies
were starting to break (mainly to do with the way `requests`
was using the `collections` library, but this may be a good
time to update everything else as well).
2024-10-25 13:14:20 +05:30

31 lines
721 B
Python

from setuptools import setup, find_packages
setup(
name='pocket-cli',
version='0.1.6',
author='Rakan Alhneiti',
author_email='rakan.alhneiti@gmail.com',
url='https://github.com/rakanalh/pocket-api',
license='LICENSE',
description='A terminal application for Pocket',
long_description=open('README.md').read(),
packages=find_packages(),
include_package_data=True,
install_requires=[
'click==8.1.7',
'requests==2.32.3',
'progress==1.6',
'future==1.0.0',
'six==1.16.0',
'urllib3==2.2.3',
'pocket-api'
],
entry_points={
'console_scripts': [
'pocket-cli=pocket_cli.cli:main'
]
},
)