-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
49 lines (46 loc) · 1.65 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
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()
description = "PyNews is a simple Python CLI to browse news from HN website"
author_name = "Patrick Mazulo"
author_email = "[email protected]"
dependencies = [
"curses-menu==0.6.7",
"requests==2.28.1",
"alive-progress==2.4.1",
]
__version__ = "0.3.0"
setup(
name="PyNews",
version=__version__,
description=description,
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/mazulo/pynews_cli",
author=author_name,
author_email=author_email,
maintainer=author_name,
maintainer_email=author_email,
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Utilities",
"Topic :: System :: Shells",
],
keywords="pynews cli shell news hackernews",
download_url="https://github.com/mazulo/pynews_cli/archive/master.zip",
packages=find_packages(exclude=["tests*"]),
install_requires=dependencies,
entry_points={"console_scripts": ["pynews = pynews.pynews:main"]},
platforms="windows linux",
)