-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathsetup.py
35 lines (31 loc) · 1.1 KB
/
setup.py
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('requirements.txt') as f:
requirements = f.readlines()
with open('README.md') as f:
readme = f.read()
long_description = readme
setup(
name ='terminal-copilot',
version ='1.5.3',
author ='Methexis',
author_email ='[email protected]',
url ='https://github.com/Methexis-Inc/terminal-copilot',
description ='A smart terminal assistant that helps you find the right command',
long_description = long_description,
long_description_content_type ="text/markdown",
license ='Apache License 2.0',
packages = find_packages(),
entry_points ={
'console_scripts': [
'copilot=copilot.main:main'
]
},
classifiers =[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
keywords ='terminal copilot openai gpt3 gpt4 gpt3.5',
install_requires = requirements,
zip_safe = False
)