Skip to content
Snippets Groups Projects
Commit 9998a785 authored by Jirka Borovec's avatar Jirka Borovec
Browse files

add todos

parent 646f000e
Branches update-setup
No related tags found
No related merge requests found
"""Root package info.""" """Root package info."""
# TODO: define initial version
__version__ = '0.0.0' __version__ = '0.0.0'
# TODO: set your name nad your colleagues
__author__ = 'PyTorch Lightning et al.' __author__ = 'PyTorch Lightning et al.'
# TODO: add contact mail address
__author_email__ = 'name@pytorchlightning.ai' __author_email__ = 'name@pytorchlightning.ai'
__license__ = 'TBD' # TODO: define licensing of your work, e.g. MIT, Apache 2.0
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright (c) 2020-2020, %s.' % __author__ __copyright__ = 'Copyright (c) 2020-2020, %s.' % __author__
# TODO: edit this page link # TODO: edit this page link
__homepage__ = 'https://github.com/PyTorchLightning/pytorch-lightning-conference-seed' __homepage__ = 'https://github.com/PyTorchLightning/pytorch-lightning-conference-seed'
# TODO: add one-line description
__docs__ = "Research Seed." __docs__ = "Research Seed."
# TODO: add multi-line description
__long_doc__ = """ __long_doc__ = """
What is it? What is it?
----------- -----------
......
pytorch-lightning >= 1.0.0rc2 pytorch-lightning >= 1.0
# todo: fix versions if needed
torch >= 1.3.0 torch >= 1.3.0
torchvision >= 0.6.0 torchvision >= 0.6.0
...@@ -27,12 +27,14 @@ def load_requirements(path_dir=PATH_ROOT, comment_char='#'): ...@@ -27,12 +27,14 @@ def load_requirements(path_dir=PATH_ROOT, comment_char='#'):
# the goal of the project is simplicity for researchers, don't want to add too much # the goal of the project is simplicity for researchers, don't want to add too much
# engineer specific practices # engineer specific practices
setup( setup(
# TODO: edit your project name, this name appears in PyPI
name='project', name='project',
version=project.__version__, version=project.__version__,
description=project.__docs__, description=project.__docs__,
author=project.__author__, author=project.__author__,
author_email=project.__author_email__, author_email=project.__author_email__,
url=project.__homepage__, url=project.__homepage__,
# TODO: update optional download seed
download_url='https://github.com/PyTorchLightning/pytorch-lightning-conference-seed', download_url='https://github.com/PyTorchLightning/pytorch-lightning-conference-seed',
license=project.__license__, license=project.__license__,
packages=find_packages(exclude=['tests', 'docs']), packages=find_packages(exclude=['tests', 'docs']),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment