14 lines
367 B
Python
Executable File
14 lines
367 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=['test-tube', 'torch', 'tqdm'],
|
|
packages=find_packages()
|
|
)
|