From 14d2b68c486a1f5b8b1ef7276d4d49c073723886 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 01:34:20 +0000 Subject: [PATCH] Initial upload of env-pro CLI tool --- app/pyproject.toml | 62 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 app/pyproject.toml diff --git a/app/pyproject.toml b/app/pyproject.toml new file mode 100644 index 0000000..16750ec --- /dev/null +++ b/app/pyproject.toml @@ -0,0 +1,62 @@ +[build-system] +requires = ["setuptools>=61.0", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "env-pro" +version = "1.0.0" +description = "Smart Environment Variable Manager CLI" +readme = "README.md" +license = {text = "MIT"} +requires-python = ">=3.9" +authors = [ + {name = "env-pro", email = "dev@example.com"} +] +keywords = ["cli", "environment", "variables", "encryption", "devops"] +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "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", +] +dependencies = [ + "click>=8.1.7", + "cryptography>=41.0.7", + "pyyaml>=6.0.1", + "python-dotenv>=1.0.0", + "pydantic>=2.5.0", + "keyring>=24.3.0", +] + +[project.optional-dependencies] +dev = [ + "pytest>=7.4.0", + "pytest-cov>=4.1.0", + "pytest-mock>=3.12.0", +] + +[project.scripts] +env-pro = "env_pro.cli:main" + +[tool.setuptools.packages.find] +where = ["."] +include = ["env_pro*"] + +[tool.pytest.ini_options] +testpaths = ["tests"] +python_files = ["test_*.py"] +python_classes = ["Test*"] +python_functions = ["test_*"] +addopts = "-v --tb=short" + +[tool.ruff] +line-length = 100 +target-version = "py39" + +[tool.ruff.lint] +select = ["E", "F", "I"] +ignore = []