-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 896 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (28 loc) · 896 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
from setuptools import find_packages, setup
from how import __author__, __version__
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",
]
},
)