[project] name = "standalone-openai-pool-cli" version = "2.0.0" description = "Standalone CLI for automated OpenAI registration and account-pool maintenance" readme = "README.md" license = {text = "MIT"} requires-python = ">=3.10" keywords = ["openai", "account-pool", "automation", "cli", "token-management"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Libraries", ] dependencies = [ "curl-cffi>=0.6", "aiohttp>=3.9", "requests>=2.31", "psycopg[binary]>=3.3", ] [project.scripts] openai-pool-standalone = "main:main" [build-system] requires = ["setuptools>=68.0", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools] py-modules = ["main", "run", "support", "account_store"] [tool.setuptools.packages.find] include = ["openai_pool_orchestrator*"]