This reverts commit a7f26a67ac
.
This commit is contained in:
parent
a7f26a67ac
commit
82223275ba
|
@ -7,13 +7,3 @@ __all__ = [
|
||||||
'LightningModule',
|
'LightningModule',
|
||||||
'data_loader',
|
'data_loader',
|
||||||
]
|
]
|
||||||
|
|
||||||
__version__ = '0.5.2.1'
|
|
||||||
__author__ = ' William Falcon et al.'
|
|
||||||
__author_email__ = 'waf2107@columbia.edu'
|
|
||||||
__license__ = 'Apache-2.0'
|
|
||||||
__homepage__ = 'https://github.com/williamFalcon/pytorch-lightning',
|
|
||||||
__doc__ = """# PyTorch Lightning
|
|
||||||
|
|
||||||
The lightweight PyTorch wrapper for ML researchers. Scale your models. Write less boilerplate.
|
|
||||||
"""
|
|
||||||
|
|
14
setup.py
14
setup.py
|
@ -7,8 +7,6 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
# http://blog.ionelmc.ro/2014/05/25/python-packaging/
|
# http://blog.ionelmc.ro/2014/05/25/python-packaging/
|
||||||
|
|
||||||
import pytorch_lightning
|
|
||||||
|
|
||||||
# https://packaging.python.org/discussions/install-requires-vs-requirements /
|
# https://packaging.python.org/discussions/install-requires-vs-requirements /
|
||||||
# keep the meta-data here for simplicity in reading this file... it's not obvious
|
# keep the meta-data here for simplicity in reading this file... it's not obvious
|
||||||
# what happens and to non-engineers they won't know to look in init ...
|
# what happens and to non-engineers they won't know to look in init ...
|
||||||
|
@ -16,13 +14,13 @@ import pytorch_lightning
|
||||||
# engineer specific practices
|
# engineer specific practices
|
||||||
setup(
|
setup(
|
||||||
name='pytorch-lightning',
|
name='pytorch-lightning',
|
||||||
version=pytorch_lightning.__version__,
|
version='0.5.2.1',
|
||||||
description=pytorch_lightning.__doc__,
|
description='The Keras for ML researchers using PyTorch',
|
||||||
author=pytorch_lightning.__author__,
|
author='William Falcon',
|
||||||
author_email=pytorch_lightning.__author_email__,
|
author_email='waf2107@columbia.edu',
|
||||||
url=pytorch_lightning.__homepage__,
|
url='https://github.com/williamFalcon/pytorch-lightning',
|
||||||
download_url='https://github.com/williamFalcon/pytorch-lightning',
|
download_url='https://github.com/williamFalcon/pytorch-lightning',
|
||||||
license=pytorch_lightning.__license__,
|
license='Apache-2',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
long_description=open('README.md', encoding='utf-8').read(),
|
long_description=open('README.md', encoding='utf-8').read(),
|
||||||
long_description_content_type='text/markdown',
|
long_description_content_type='text/markdown',
|
||||||
|
|
Loading…
Reference in New Issue