-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 775 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 775 Bytes
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
from pathlib import Path
from setuptools import setup, find_packages
setup(
name="open-cli-codex",
version="1.0.0",
author="Trần Tuấn Phi",
author_email="phihhhhhhhhhh@gmail.com",
description="Open CLI Codex — a non-commercial, open-source CLI coding agent",
url="https://github.com/phiiggfdg/Open-cli-codex",
py_modules=["fw"],
packages=find_packages(),
data_files=[
(".fw_data/src", [str(p) for p in Path(".fw_data/src").glob("*.py")]),
],
include_package_data=True,
entry_points={
"console_scripts": [
"opencli=fw:main",
],
},
python_requires=">=3.10",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)