-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (31 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
28
29
30
31
32
33
34
35
from setuptools import setup
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Console :: Curses",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
# Get the long description from the README file
with open("README.md", encoding="utf-8") as f:
read_file = f.read()
setup(
name="kadoo",
description="The priorities management CLI you never knew you needed",
url="https://github.com/TechWiz-3/kadoo-cli",
author="Zac the Wise aka TechWiz-3",
version="0.1.6",
packages=["kadoo"],
long_description=read_file,
long_description_content_type="text/markdown",
entry_points="""
[console_scripts]
kadoo=kadoo.main:cli
""",
classifiers=classifiers,
install_requires=["rich", "toml"],
)