14 lines
339 B
Python
Executable File
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()
|
|
)
|