-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 906 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 906 Bytes
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
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
VERSION = "0.1.76"
PACKAGE_NAME = "dailydotdev_bookmark_cli"
AUTHOR = "Meet Gor"
AUTHOR_EMAIL = "gormeet711@gmail.com"
URL = "https://github.com/Mr-Destructive/bookmarks-cli"
DESCRIPTION = "Get your Daily Dev bookmarks from CLI"
README = (pathlib.Path(__file__).parent / "README.md").read_text(encoding="utf-8")
INSTALL_REQUIRES = ["feedparser", "rich", "textual"]
setup(
name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
long_description=README,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
install_requires=INSTALL_REQUIRES,
packages=find_packages(),
entry_points={
"console_scripts": [
"bookmarks = dailydotdev_bookmark_cli.dailydotdev_bookmark_cli:main"
]
},
)