lightning/setup.py

29 lines
852 B
Python
Raw Normal View History

2019-03-31 00:50:32 +00:00
#!/usr/bin/env python
2019-04-21 17:09:06 +00:00
from setuptools import setup, find_packages
2019-03-31 00:50:32 +00:00
# https://packaging.python.org/guides/single-sourcing-package-version/
# http://blog.ionelmc.ro/2014/05/25/python-packaging/
setup(
name="pytorch-lightning",
2019-05-14 01:47:07 +00:00
version='0.1.dev1722',
description="The Keras for ML researchers using PyTorch",
author="William Falcon",
author_email="waf2107@columbia.edu",
url="https://github.com/williamFalcon/pytorch-lightning",
download_url="https://github.com/williamFalcon/pytorch-lightning",
license="MIT",
keywords=["deep learning", "pytorch", "AI"],
python_requires=">=3.5",
install_requires=[
"torch",
"tqdm",
"test-tube",
],
2019-04-21 17:02:11 +00:00
packages=find_packages(),
long_description=open("README.md", encoding="utf-8").read(),
include_package_data=True,
zip_safe=False,
)