Skip to content
Snippets Groups Projects
Select Git revision
  • 5b87097325e7c71c7cd3dd57f46afeaf2a8ae26b
  • main default protected
  • dev protected
  • f-yaml-parser-enums
  • f-fix-paths
  • f-fix-validate-to-dict
  • f-labfolder-converter
  • f-state-machine-script
  • f-xlsx-converter-warnings-errors
  • f-rename
  • f-extra-deps
  • f-more-jsonschema-export
  • f-henrik
  • f-fix-89
  • f-trigger-advanced-user-tools
  • f-real-rename-test
  • f-linkahead-rename
  • f-register-integrationtests
  • f-fix-id
  • f-h5-files
  • f-json-schema
  • v0.14.0
  • v0.13.0
  • v0.12.0
  • v0.11.0
  • v0.10.0-numpy2
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.0
  • v0.6.1
  • v0.6.0
  • v0.5.0
  • v0.4.1
  • v0.4.0
  • v0.3.1
  • v0.3.0
37 results

README_SETUP.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pyproject.toml 1.71 KiB
    [build-system]
    requires = ["setuptools >= 61.0"]
    build-backend = "setuptools.build_meta"
    
    [project]
    name = "ruqad"
    description = "Quality assured data integration from Kadi to LinkAhead."
    version = "0.1.1"
    readme = "README.md"
    license = {file = "LICENSE"}
    authors = [
            {name = "Henrik tom Wörden", email="h.tomwoerden@indiscale.com"},
            {name = "Timm Fitschen", email= "t.fitschen@indiscale.com"}
    ]
    maintainers = [
            {name = "Henrik tom Wörden", email="h.tomwoerden@indiscale.com"}
    ]
    keywords = ["Data management", "Research data management"]
    classifiers = [
                "Programming Language :: Python :: 3",
                "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
                "Operating System :: OS Independent",
    ]
    requires-python = ">= 3.8"
    dependencies = [
                 "linkahead",
                 "caoscrawler[rocrate] @ file:///home/tf/src/caosdb-crawler",
                 "kadi-apy",
                 "boto3>=1.35",
                 "toml>=0.10",
    ]
    
    [project.urls]
    Homepage = "https://getlinkahead.com"
    Documentation = "https://docs.indiscale.com"
    Repository = "https://gitlab.indiscale.com/caosdb/src/linkahead-python-package-template"
    Issues = "https://gitlab.indiscale.com/caosdb/src/linkahead-python-package-template/-/issues"
    Changelog = "https://gitlab.indiscale.com/caosdb/src/linkahead-python-package-template/-/blob/main/CHANGELOG.md?ref_type=heads"
    
    [project.optional-dependencies]
    dev = [
        "autopep8",
        "pylint",
        "ruqad[test]",
    ]
    test = [
        "tox",
        "pytest",
        "pytest-cov",
    ]
    all = [
        "ruqad[dev]",
    ]
    
    [project.scripts]
    rq_monitor = "ruqad.monitor:monitor"
    rq_qualitycheck = "ruqad.qualitycheck:main"
    
    [tool.setuptools.package-data]
    ruqad = ["resources/**/*"]