-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 893 Bytes
/
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
from how import __version__, __author__
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
with open("requirements.txt", "r") as f:
requirements = f.read().strip().splitlines()
setup(
name="how-cli",
version=__version__,
description="An AI-based CLI assistant to help you with command line & shell.",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/FireHead90544/how-cli",
project_urls={
"Issue Tracker": "https://github.com/FireHead90544/how-cli/issues",
},
author=__author__,
author_email="rudranshjoshi1806@gmail.com",
platforms="any",
license="MIT",
packages=find_packages(),
install_requires=requirements,
entry_points={
"console_scripts": [
"how=how.how:app",
]
}
)