lightning/setup.py

30 lines
915 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-08-03 15:25:07 +00:00
version='0.3.6.9',
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>=1.1.0",
"tqdm",
2019-08-03 15:08:51 +00:00
"test-tube>=0.6.7.6",
],
2019-04-21 17:02:11 +00:00
packages=find_packages(),
long_description=open("README.md", encoding="utf-8").read(),
2019-05-14 09:53:58 +00:00
long_description_content_type='text/markdown',
include_package_data=True,
zip_safe=False,
)