24 lines
557 B
Python
24 lines
557 B
Python
from setuptools import setup
|
|
from setuptools.command.install import install
|
|
import os
|
|
|
|
setup(
|
|
name='CopilotTerminal',
|
|
version='0.1.0',
|
|
description='zsh plugin to use copilot command predictions in the terminal',
|
|
author='Victor Mylle',
|
|
author_email='victor.mylle@hotmail.com',
|
|
license='MIT',
|
|
py_modules=['copilot', 'AuthToken'],
|
|
install_requires=[
|
|
'requests',
|
|
'click',
|
|
'rich',
|
|
'pyperclip',
|
|
],
|
|
entry_points='''
|
|
[console_scripts]
|
|
ct=copilot:generate_suggestion
|
|
''',
|
|
|
|
) |