-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1 KB
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, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="comandi",
version="0.0.2",
author="Sagnik Bhattacharjee",
author_email="bhattacharjeesagnik910@gmail.com",
description="A CLI tool for command-line instructions and code analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/datavorous/comandi",
packages=find_packages(),
include_package_data=True,
package_data={
'comandi': ['prompt.json'],
},
install_requires=[
"rich",
"meta_ai_api",
],
entry_points={
"console_scripts": [
"comandi=comandi.main:cli_main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache-2.0 License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)