diff --git a/project/__init__.py b/project/__init__.py index 3b15de5fb6e1b7d42b29d08230f7674cc647cc22..89859f212b8f19cdf47b1f9ba38781ae83920bbb 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 30840f0ce8f203f5935035cf3c2d7701d13e9f03..0b697166d9f90d54755f71cb384ad48f2268c98a 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 b831299662f70a75a074c509abeceafcdf13ae08..9349e78b1c68313d6002cbbca71f8f1db363f5c4 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']),