-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
75 lines (65 loc) · 1.81 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# -*- coding: utf-8 -*-
import sys
from setuptools import find_packages, setup
import ais
tests_require = [
"pytest",
]
dev_require = [
*tests_require,
"flake8",
"pyyaml",
"twine",
"wheel",
]
install_requires = [
"questionary==1.10.0",
"requests==2.28.2",
"rich==13.3.3",
"setuptools",
]
extras_require = {
"dev": dev_require,
"test": tests_require,
}
def long_description():
with open("README.md", encoding="utf-8") as f:
return f.read()
setup(
name="ais-cli",
version=ais.__version__,
description="Ais (ai shell) is interactive command line ai tool powered by ChatGPT (GPT-3.5)",
long_description=long_description(),
long_description_content_type="text/markdown",
author=ais.__author__,
author_email="sinan_kanidagli@hotmail.com",
license=ais.__licence__,
packages=find_packages(include=["ais", "ais.*"]),
entry_points={
"console_scripts": [
"ais = ais.__main__:main",
],
},
python_requires=">=3.7",
extras_require=extras_require,
install_requires=install_requires,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Topic :: System :: Networking",
"Topic :: Terminals",
"Topic :: Text Processing",
"Topic :: Utilities",
],
project_urls={
"GitHub": "https://github.com/knid/ais",
"Twitter": "https://twitter.com/devknid",
"Documentation": "https://github.com/knid/ais/README.md",
},
)