-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
27 lines (26 loc) · 1.02 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
from setuptools import setup, find_packages
setup(
name="googlenewsdecoder",
version="0.1.6",
description="A Python package to decode Google News URLs to their original sources.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/SSujitX/google-news-url-decoder",
author="Sujit Biswas",
author_email="ssujitxx@gmail.com",
license="MIT",
packages=find_packages(),
install_requires=["requests>=2.32.3", "selectolax>=0.3.21"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="google news decoder",
project_urls={
"Bug Tracker": "https://github.com/SSujitX/google-news-url-decoder/issues",
"Documentation": "https://github.com/SSujitX/google-news-url-decoder#readme",
"Source Code": "https://github.com/SSujitX/google-news-url-decoder",
},
python_requires=">=3.9",
)