Skip to content
Snippets Groups Projects
Select Git revision
  • 9998a785728a51bb0d64be0e89a4eaef066bd48c
  • master default protected
  • Dawit
  • maike-patrick-first-pipeline
  • Jonas
  • Kamal
  • Maike
  • Patrick
  • Uni-Bremen
  • update-setup
10 results

__init__.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    __init__.py 806 B
    """Root package info."""
    
    # TODO: define initial version
    __version__ = '0.0.0'
    # TODO: set your name nad your colleagues
    __author__ = 'PyTorch Lightning et al.'
    # TODO: add contact mail address
    __author_email__ = 'name@pytorchlightning.ai'
    # TODO: define licensing of your work, e.g. MIT, Apache 2.0
    __license__ = 'Apache 2.0'
    __copyright__ = 'Copyright (c) 2020-2020, %s.' % __author__
    # TODO: edit this page link
    __homepage__ = 'https://github.com/PyTorchLightning/pytorch-lightning-conference-seed'
    # TODO: add one-line description
    __docs__ = "Research Seed."
    # TODO: add multi-line description
    __long_doc__ = """
    What is it?
    -----------
    This is starter project template which shall simplify initial steps for each new PL project...
    
    Except the implemented sections:
     - sample package
     - setting CI
    """