From 9998a785728a51bb0d64be0e89a4eaef066bd48c Mon Sep 17 00:00:00 2001 From: Jirka Borovec <jirka.borovec@seznam.cz> Date: Mon, 31 Aug 2020 01:12:04 +0200 Subject: [PATCH] add todos --- project/__init__.py | 8 +++++++- requirements.txt | 3 ++- setup.py | 2 ++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/project/__init__.py b/project/__init__.py index 3b15de5..89859f2 100644 --- a/project/__init__.py +++ b/project/__init__.py @@ -1,13 +1,19 @@ """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' -__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__ # 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? ----------- diff --git a/requirements.txt b/requirements.txt index 30840f0..0b69716 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ -pytorch-lightning >= 1.0.0rc2 +pytorch-lightning >= 1.0 +# todo: fix versions if needed torch >= 1.3.0 torchvision >= 0.6.0 diff --git a/setup.py b/setup.py index b831299..9349e78 100644 --- a/setup.py +++ b/setup.py @@ -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 # engineer specific practices setup( + # TODO: edit your project name, this name appears in PyPI name='project', version=project.__version__, description=project.__docs__, author=project.__author__, author_email=project.__author_email__, url=project.__homepage__, + # TODO: update optional download seed download_url='https://github.com/PyTorchLightning/pytorch-lightning-conference-seed', license=project.__license__, packages=find_packages(exclude=['tests', 'docs']), -- GitLab