12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- [build-system]
- requires = ["setuptools>=61.0", "wheel"]
- build-backend = "setuptools.build_meta"
- [project]
- name = "smart-logger" # Replace with meta.__app_name__
- dynamic = ["version"]
- description = "" # Add your project description here
- authors = [
- {name = "Steve L. Nyemba", email = "steve@the-phi.com"} # Replace with meta.__author__
- ]
- license = {text = "MIT"} # Replace with meta.__license__
- readme = "README.md" # Optional: add if you have a README
- requires-python = ">=3.7"
- keywords = ["logs", "apps","folder","login"]
- classifiers = [
- "Development Status :: 4 - Beta",
- "Intended Audience :: Developers",
- "License :: OSI Approved :: MIT License",
- ]
- dependencies = [
- "typer",
- "pandas",
- "numpy",
- "plugin-ix @ git+https://dev.the-phi.com/git/library/plugins"
- ]
- [project.optional-dependencies]
- transport = [
- "data-transport @ git+https://github.com/lnyemba/data-transport.git"
- ]
- [project.urls]
- Homepage = "https://dev.the-phi.com/git/steve/smart-logger.git"
- Repository = "https://dev.the-phi.com/git/steve/smart-logger.git"
- #[project.scripts]
- #smart-logger = "smart.logger:main" # Adjust the module path as needed
- [tool.setuptools]
- include-package-data = true
- zip-safe = false
- script-files = ["bin/smart-logger","bin/smart-logger.bat"]
- [tool.setuptools.packages.find]
- include = ["smart*"]
- [tool.setuptools.dynamic]
- version = {attr = "smart.meta.__version__"}
|