45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
"""
|
|
Setup script for the Edison package.
|
|
"""
|
|
from setuptools import setup, find_packages
|
|
|
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="edison",
|
|
version="0.1.0",
|
|
author="Edison Team",
|
|
author_email="example@example.com",
|
|
description="AI bot that translates natural language to shell commands",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/yourusername/edison",
|
|
packages=find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.6",
|
|
install_requires=[
|
|
"openai>=1.0.0",
|
|
"termcolor==2.2.0",
|
|
"colorama==0.4.4",
|
|
"python-dotenv==1.0.0",
|
|
"distro==1.7.0",
|
|
"PyYAML==6.0.2",
|
|
"pyperclip==1.8.2",
|
|
"prompt_toolkit==3.0.50",
|
|
],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"edison=edison.cli:main",
|
|
],
|
|
},
|
|
include_package_data=True,
|
|
package_data={
|
|
"edison": ["edison.prompt", "edison.yaml"],
|
|
},
|
|
)
|