Skip to content
Snippets Groups Projects
Select Git revision
  • 31c34397f28b96e5862bba57d33316dd12d60d3e
  • master default protected
  • dev-lkugler
  • teaching-2024
  • old_config_2023-05 protected
  • v2025.2
  • v2024.6
  • v2024.2.20
8 results

tutorial1.ipynb

Blame
  • setup.py 412 B
    #!/usr/bin/env python3
    from distutils.core import setup
    
    setup(name="dbrepo",
          version="1.4.6",
          description="A library for communicating with DBRepo",
          url="https://www.ifs.tuwien.ac.at/infrastructures/dbrepo/1.4.6/",
          author="Martin Weise",
          license="Apache-2.0",
          author_email="martin.weise@tuwien.ac.at",
          packages=[
                "dbrepo",
                "dbrepo.api"
          ])