Created pip package
This commit is contained in:
22
setup.py
Normal file
22
setup.py
Normal file
@@ -0,0 +1,22 @@
|
||||
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'],
|
||||
install_requires=[
|
||||
'requests',
|
||||
'click',
|
||||
],
|
||||
entry_points='''
|
||||
[console_scripts]
|
||||
ct=copilot:generate_suggestion
|
||||
''',
|
||||
|
||||
)
|
||||
Reference in New Issue
Block a user