[build-system] requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"] build-backend = "setuptools.build_meta" [project] name = "blackroad" version = "0.1.0" description = "Official Python SDK for the BlackRoad Operating System" readme = "README.md" requires-python = ">=3.8" license = {text = "MIT"} authors = [ {name = "BlackRoad Team", email = "support@blackroad.dev"} ] maintainers = [ {name = "BlackRoad Team", email = "support@blackroad.dev"} ] keywords = ["blackroad", "ai", "agents", "blockchain", "roadchain", "api", "sdk", "async"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Internet :: WWW/HTTP", "Typing :: Typed", ] dependencies = [ "httpx>=0.24.0", "pydantic>=2.0.0", "python-dateutil>=2.8.0", "typing-extensions>=4.0.0", ] [project.optional-dependencies] dev = [ "pytest>=7.0.0", "pytest-asyncio>=0.21.0", "pytest-cov>=4.0.0", "black>=23.0.0", "flake8>=6.0.0", "mypy>=1.0.0", "pylint>=2.17.0", "isort>=5.12.0", ] test = [ "pytest>=7.0.0", "pytest-asyncio>=0.21.0", "pytest-cov>=4.0.0", ] [project.urls] Homepage = "https://github.com/blackboxprogramming/BlackRoad-Operating-System" Documentation = "https://blackroad.dev/docs" Repository = "https://github.com/blackboxprogramming/BlackRoad-Operating-System" "Bug Tracker" = "https://github.com/blackboxprogramming/BlackRoad-Operating-System/issues" [tool.black] line-length = 100 target-version = ['py38', 'py39', 'py310', 'py311'] include = '\.pyi?$' exclude = ''' /( \.eggs | \.git | \.hg | \.mypy_cache | \.tox | \.venv | _build | buck-out | build | dist )/ ''' [tool.isort] profile = "black" line_length = 100 multi_line_output = 3 include_trailing_comma = true force_grid_wrap = 0 use_parentheses = true ensure_newline_before_comments = true [tool.mypy] python_version = "3.8" warn_return_any = true warn_unused_configs = true disallow_untyped_defs = true disallow_incomplete_defs = true check_untyped_defs = true no_implicit_optional = true warn_redundant_casts = true warn_unused_ignores = true warn_no_return = true strict_equality = true ignore_missing_imports = true [tool.pytest.ini_options] minversion = "7.0" addopts = "-ra -q --strict-markers" testpaths = ["tests"] asyncio_mode = "auto" python_files = ["test_*.py", "*_test.py"] python_classes = ["Test*"] python_functions = ["test_*"] [tool.coverage.run] source = ["blackroad"] omit = ["*/tests/*", "*/examples/*"] [tool.coverage.report] exclude_lines = [ "pragma: no cover", "def __repr__", "raise AssertionError", "raise NotImplementedError", "if __name__ == .__main__.:", "if TYPE_CHECKING:", "@abstractmethod", ] [tool.pylint.messages_control] max-line-length = 100 disable = [ "C0111", # missing-docstring "R0903", # too-few-public-methods ]