-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (47 loc) · 1.54 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
import codecs
import os
from termy.constants import VERSION
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
DESCRIPTION = 'A lightweight terminal assistant to give a natural language interface to your terminal commands'
project_urls = {
'Github': 'https://github.com/dingusagar/termy',
}
# Setting up
setup(
name="termy",
version=VERSION,
author="Dingu Sagar, Bhanu Rekha, Divya Priya",
author_email="<[email protected]>",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(),
install_requires=[
'pandas',
'rapidfuzz',
'google-api-python-client',
'google-auth-httplib2',
'google-auth-oauthlib',
'colorama',
'tqdm',
'cryptography',
'art',
'openai',
],
keywords=['python', 'termy', 'terminal assistant', 'terminast', 'terminal alias', 'command automation'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
entry_points={
'console_scripts': ['termy=termy.controller.controller:init_cli_app'],
},
project_urls=project_urls
)