Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
kiara_plugin.develop / pyproject.toml
Size: Mime:
[build-system]
requires = [
    "setuptools>=63",
    "setuptools_scm[toml]>7.0.0",
    "wheel",
]
build-backend = 'setuptools.build_meta'

[project]
name = "kiara_plugin.develop"
description = "Development utilities for kiara."
authors = [
    {name = "Markus Binsteiner", email = "markus@frkl.io"}
]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["kiara"]
license = {text = "MPL-2.0"}
classifiers = [
    "Framework :: Django",
    "Programming Language :: Python :: 3",
    "Development Status :: 3 - Alpha",
    "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3 :: Only",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11"
]
dependencies = [
    "kiara>=0.4.29",
    "kiara_plugin.core_types>=0.4.14",
    "diskcache>=5.4.0",
    "httpx>=0.23.0",
    "pydantic-to-typescript>=1.0.9"
]
dynamic = ["version"]

[project.optional-dependencies]
dev_documentation = [
    "kiara[dev_documentation]",
]
dev_testing = [
    "kiara[dev_testing]",
    "types-setuptools",
    "sqlalchemy-stubs"
]
dev_utils = [
    "kiara[dev_utils]"
]
dev_all = [
    "kiara[dev_all]"
]

[project.entry-points."kiara.plugin"]
develop = "kiara_plugin.develop"

[project.entry-points."kiara.cli_subcommands"]
debug = "kiara_plugin.develop.interfaces.cli.debug:debug"
dev = "kiara_plugin.develop.interfaces.cli.dev:dev_group"
conda = "kiara_plugin.develop.interfaces.cli.conda:conda"


[project.entry-points."kiara.data_types"]
develop = "kiara_plugin.develop:find_data_types"

[project.entry-points."kiara.model_classes"]
develop = "kiara_plugin.develop:find_model_classes"

[project.entry-points."kiara.modules"]
develop = "kiara_plugin.develop:find_modules"

[project.entry-points."kiara.pipelines"]
develop = "kiara_plugin.develop:find_pipelines"


[project.urls]
homepage = "https://github.com/DHARPA-Project/kiara_plugin.develop"
documentation = "https://DHARPA-Project.github.io/kiara_plugin.develop"
repository = "https://github.com/DHARPA-Project/kiara_plugin.develop"

[tool.black]
include = '\.pyi?$'
exclude = '''
/(
    \.git
  | \.hg
  | \.mypy_cache
  | \.tox
  | \.venv
  | _build
  | buck-out
  | build
  | dist
  | external
)/
'''

[tool.setuptools_scm]
write_to = "src/kiara_plugin/develop/version.txt"