Files
pytorch-lightning/setup.py
T
2019-03-30 20:50:32 -04:00

14 lines
339 B
Python
Executable File

#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='pytorch-lightning',
version='0.0.1',
description='Rapid research framework',
author='',
author_email='',
url='https://github.com/williamFalcon/pytorch-lightning',
install_requires=[],
packages=find_packages()
)