Skip to content
Snippets Groups Projects
Select Git revision
  • Topic/1051-basicReporting
  • master default protected
  • gitkeep
  • dev protected
  • Issue/2353-dropShapeFix
  • Issue/2583-treeBug
  • Hotfix/2562-organizations
  • Issue/2464-invalidateMeta
  • Issue/2484-filterExtracted
  • Issue/2309-docs
  • Issue/2462-removeTraces
  • Hotfix/2459-EncodingPath
  • Hotfix/2452-linkedDeletion
  • Issue/2328-noFailOnLog
  • Issue/1792-newMetadataStructure
  • v2.5.2-Hotfix2365
  • Hotfix/2365-targetClassWorks
  • Issue/2269-niceKpiParser
  • Issue/2295-singleOrganizationFix
  • Issue/1953-owlImports
  • Hotfix/2087-efNet6
  • v2.9.0
  • v2.8.2
  • v2.8.1
  • v2.8.0
  • v2.7.2
  • v2.7.1
  • v2.7.0
  • v2.6.2
  • v2.6.1
  • v2.6.0
  • v2.5.3
  • v2.5.2
  • v2.5.1
  • v2.5.0
  • v2.4.1
  • v2.4.0
  • v2.3.0
  • v2.2.0
  • v2.1.0
  • v2.0.0
41 results

build.cake

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pyproject.toml 1.66 KiB
    [build-system]
    requires = ["setuptools>=43", "wheel"]
    build-backend = "setuptools.build_meta" 
    
    [project]
    name = "plotID"
    description = "The plotID toolkit supports researchers in tracking and storing relevant data in plots. Plots are labelled with an ID and the corresponding data is stored."
    readme = "README.md"
    license = {text = "Apache License, Version 2.0"}
    authors = [
        {name = "Institut für Fluidsystemtechnik - TU Darmstadt", email = "nfdi4ing@fst.tu-darmstadt.de"},
        {name = "Hannes Mayr", email = "hannes.mayr@stud.tu-darmstadt.de"},
        {name = "Martin Hock", email = "Martin.Hock@fst.tu-darmstadt.de"},
        {name = "Manuela Richter", email = "Manuela.Richter@fst.tu-darmstadt.de"},
        
    ]
    dynamic = ["version"]
    requires-python = ">=3.10"
    classifiers = [
        "Programming Language :: Python",
        "Programming Language :: Python :: 3 :: Only",
        "Programming Language :: Python :: 3.10",
        "License :: OSI Approved :: Apache Software License",
        "Operating System :: OS Independent",
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Science/Research",
        "Topic :: Scientific/Engineering :: Visualization",
    ]
    dependencies = [
        "Pillow",
        "matplotlib",
        "numpy",
        "qrcode",
    ]
    
    [project.urls]
    Repository = "https://git.rwth-aachen.de/plotid/plotid_python"
    Documentation = "https://plotid.pages.rwth-aachen.de/plotid_python"
    "Bug Tracker" = "https://git.rwth-aachen.de/plotid/plotid_python/-/issues"
    
    [project.optional-dependencies]
    test = ["coverage"]
    docs = [
        "sphinx",
        "sphinx-autoapi",
        "sphinx-rtd-theme",
        "myst-parser",
    ]
    
    [tool.setuptools]
    packages = ["plotid"]
    
    [tool.setuptools.dynamic]
    version = {attr = "plotid.__version__"}