-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (43 loc) · 992 Bytes
/
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
from setuptools import setup, find_packages
# Setup info
with open("README.md") as f:
readme = f.read()
with open("LICENSE") as f:
license = f.read()
setup(
# Author
author="masak1",
# Version control
name="aitility",
version="0.0.3",
description="AITility is an AI tool for your CLI.",
long_description=readme,
license=license,
# Manifest
use_scm_version=True,
setup_requires=["setuptools_scm"],
# Packages
packages=find_packages(where="aitility"),
package_dir={"": "aitility"},
include_package_data=True,
install_requires=[
# aitility
"click",
"rich",
"pyxdg",
"PyYAML",
# requests
"typing",
"fake_useragent",
"pydantic",
"requests",
"retrying",
"tls_client",
],
entry_points={
"console_scripts": [
"aitility = aitility.cli:main",
"ait = aitility.cli:main",
],
},
)