-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 1.21 KB
/
setup.py
File metadata and controls
34 lines (33 loc) · 1.21 KB
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
from setuptools import setup, find_namespace_packages
setup(
name="cli-anything-iterm2",
version="1.0.0",
description="A stateful CLI harness for iTerm2 — control a running iTerm2 instance programmatically.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="voidfreud",
python_requires=">=3.10",
packages=find_namespace_packages(include=["cli_anything.*"]),
package_data={
"cli_anything.iterm2_ctl": ["skills/*.md", "skills/references/*.md"],
},
install_requires=[
"click>=8.0.0",
"prompt-toolkit>=3.0.0",
"iterm2>=2.7",
],
entry_points={
"console_scripts": [
"cli-anything-iterm2=cli_anything.iterm2_ctl.iterm2_ctl_cli:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: MacOS",
"Topic :: Terminals :: Terminal Emulators/X Terminals",
"Intended Audience :: Developers",
],
# NOTE: iTerm2.app itself is a hard dependency that cannot be expressed here.
# Install it from https://iterm2.com/ and enable the Python API:
# iTerm2 → Preferences → General → Magic → Enable Python API
)