Skip to content
Snippets Groups Projects
Select Git revision
  • 528e6964272722a54eeabda2433823e345501f5c
  • main default
  • new protected
3 results

pyproject.toml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    pyproject.toml 1.24 KiB
    [build-system]
    requires = ["setuptools >= 61.0"]
    build-backend = "setuptools.build_meta"
    
    [project]
    name = "linkahead-sss-loanpy"
    description = "Server side scripting part of the loan management in LinkAhead"
    version = "0.0.1"
    readme = "README.md"
    license = {file = "LICENSE"}
    authors = [
            {name = "Henrik tom Wörden", email="h.tomwoerden@indiscale.com"},
            {name = "Florian Spreckelsen", email= "f.spreckelsen@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 = [
       "caosadvancedtools",
       "py3-validate-email",
       "linkahead"
    ]
    
    [project.urls]
    Homepage = "https://getlinkahead.com"
    Documentation = "https://docs.indiscale.com"
    Repository = "https://gitlab.indiscale.com/caosdb/src/linkahead-loan"
    Issues = "https://gitlab.indiscale.com/caosdb/src/linkahead-loan/-/issues"
    Changelog = "https://gitlab.indiscale.com/caosdb/src/linkahead-loan/-/blob/main/CHANGELOG.md?ref_type=heads"