forked from ravin-d-27/Commandor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (65 loc) · 2.2 KB
/
setup.py
File metadata and controls
67 lines (65 loc) · 2.2 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="commandor-ai",
version="0.0.1",
description="An intelligent terminal assistant that uses AI to convert natural language to shell commands",
long_description=long_description,
long_description_content_type="text/markdown",
author="Ravin D",
author_email="ravin.d3107@outlook.com",
url="https://github.com/ravin-d-27/Commandor",
project_urls={
"Bug Reports": "https://github.com/ravin-d-27/Commandor/issues",
"Source": "https://github.com/ravin-d-27/Commandor",
"Documentation": "https://github.com/ravin-d-27/Commandor#readme",
},
packages=find_packages(),
install_requires=[
"google-generativeai>=0.3.0",
"python-decouple>=3.6",
"pyreadline3>=3.4.1; platform_system=='Windows'",
"colorama>=0.4.4", # For cross-platform colored output
"rich>=10.0.0,<14.0.0",
],
entry_points={
"console_scripts": [
"commandor=commandor.main:main",
],
},
python_requires=">=3.7",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: Free for non-commercial use",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
"Topic :: Utilities",
],
keywords=[
"terminal",
"ai",
"shell",
"command-line",
"natural-language",
"gemini",
"assistant",
"automation",
"cli",
"productivity",
],
include_package_data=True,
zip_safe=False,
)