-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (64 loc) · 2.57 KB
/
pyproject.toml
File metadata and controls
69 lines (64 loc) · 2.57 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
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
# pyproject.toml
# Specify the build system (standard setuptools)
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
# Project metadata
[project]
name = "codex-cli-studio"
version = "0.1.2" # Current version
authors = [
{ name="Michael Shapkin" },
# You can add more authors if needed
]
description = "AI-powered CLI tools (explain, script, visualize, config) using OpenAI models."
readme = "README.md" # Link to your README file
requires-python = ">=3.9" # Minimum Python version
license = { file="LICENSE" } # Link to your LICENSE file
keywords = ["cli", "ai", "openai", "codex", "gpt", "developer-tools", "automation", "visualization"]
classifiers = [
"Development Status :: 3 - Alpha", # Initial development stage
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Environment :: Console",
"Operating System :: OS Independent",
]
# Core dependencies required for the tool to run
dependencies = [
"typer[all]>=0.12.3,<1.0.0", # Includes click and rich
"openai>=1.30.1,<2.0.0",
"python-dotenv>=1.0.1,<2.0.0",
"graphviz>=0.20.1,<1.0.0", # For visualize module
]
# Optional dependencies, installable via pip install .[dev]
[project.optional-dependencies]
dev = [
"pytest>=8.2,<9.0", # For running tests
"pytest-mock>=3.12,<4.0", # For mocking API calls in tests
"Sphinx>=7.0,<8.0",
"furo>=2024.1.29",
"myst-parser>=2.0,<3.0",
"sphinx-click",
# Future dev tools can be added here:
# "black", # Code formatter
# "ruff", # Linter
# "mkdocs", # Documentation generator
]
# Define the command-line script entry point
[project.scripts]
cstudio = "codex_cli.main:run" # Command 'cstudio' executes run() in codex_cli/main.py
# Project URLs (optional but recommended)
[project.urls]
Homepage = "https://github.com/michaelshapkin/codex-cli-studio"
Repository = "https://github.com/michaelshapkin/codex-cli-studio"
Discussions = "https://github.com/michaelshapkin/codex-cli-studio/discussions" # Added Discussions link
# Issues = "https://github.com/michaelshapkin/codex-cli-studio/issues" # Uncomment if you use issues actively