update setup
This commit is contained in:
parent
34f0044bc5
commit
79f0856bc8
|
@ -1,3 +1,13 @@
|
||||||
from .models.trainer import Trainer
|
from .models.trainer import Trainer
|
||||||
from .root_module.root_module import LightningModule
|
from .root_module.root_module import LightningModule
|
||||||
from .root_module.decorators import data_loader
|
from .root_module.decorators import data_loader
|
||||||
|
|
||||||
|
__version__ = '0.3.6.9'
|
||||||
|
__author__ = "William Falcon",
|
||||||
|
__author_email__ = "waf2107@columbia.edu"
|
||||||
|
__license__ = 'MIT'
|
||||||
|
__homepage__ = 'https://github.com/williamFalcon/pytorch-lightning',
|
||||||
|
__copyright__ = 'Copyright (c) 2018-2019, %s.' % __author__
|
||||||
|
__doc__ = """
|
||||||
|
The Keras for ML researchers using PyTorch
|
||||||
|
"""
|
||||||
|
|
52
setup.py
52
setup.py
|
@ -1,19 +1,28 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup
|
||||||
|
|
||||||
|
import pytorch_lightning
|
||||||
|
|
||||||
# https://packaging.python.org/guides/single-sourcing-package-version/
|
# https://packaging.python.org/guides/single-sourcing-package-version/
|
||||||
|
|
||||||
# http://blog.ionelmc.ro/2014/05/25/python-packaging/
|
# http://blog.ionelmc.ro/2014/05/25/python-packaging/
|
||||||
setup(
|
setup(
|
||||||
name="pytorch-lightning",
|
name="pytorch-lightning",
|
||||||
version='0.3.6.9',
|
version=pytorch_lightning.__version__,
|
||||||
description="The Keras for ML researchers using PyTorch",
|
description=pytorch_lightning.__doc__,
|
||||||
author="William Falcon",
|
author=pytorch_lightning.__author__,
|
||||||
author_email="waf2107@columbia.edu",
|
author_email=pytorch_lightning.__author_email__,
|
||||||
url="https://github.com/williamFalcon/pytorch-lightning",
|
url=pytorch_lightning.__homepage__,
|
||||||
download_url="https://github.com/williamFalcon/pytorch-lightning",
|
license=pytorch_lightning.__license__,
|
||||||
license="MIT",
|
packages=['pytorch_lightning'],
|
||||||
|
|
||||||
|
long_description=open("README.md", encoding="utf-8").read(),
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
|
|
||||||
|
include_package_data=True,
|
||||||
|
zip_safe=False,
|
||||||
|
|
||||||
keywords=["deep learning", "pytorch", "AI"],
|
keywords=["deep learning", "pytorch", "AI"],
|
||||||
python_requires=">=3.5",
|
python_requires=">=3.5",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
@ -21,9 +30,26 @@ setup(
|
||||||
"tqdm",
|
"tqdm",
|
||||||
"test-tube>=0.6.7.6",
|
"test-tube>=0.6.7.6",
|
||||||
],
|
],
|
||||||
packages=find_packages(),
|
|
||||||
long_description=open("README.md", encoding="utf-8").read(),
|
classifiers=[
|
||||||
long_description_content_type='text/markdown',
|
'Environment :: Console',
|
||||||
include_package_data=True,
|
'Natural Language :: English',
|
||||||
zip_safe=False,
|
# How mature is this project? Common values are
|
||||||
|
# 3 - Alpha, 4 - Beta, 5 - Production/Stable
|
||||||
|
'Development Status :: 4 - Beta',
|
||||||
|
# Indicate who your project is intended for
|
||||||
|
'Intended Audience :: Developers',
|
||||||
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
||||||
|
'Topic :: Scientific/Engineering :: Image Recognition',
|
||||||
|
'Topic :: Scientific/Engineering :: Information Analysis',
|
||||||
|
# Pick your license as you wish
|
||||||
|
'License :: OSI Approved :: BSD License',
|
||||||
|
'Operating System :: OS Independent',
|
||||||
|
# Specify the Python versions you support here. In particular, ensure
|
||||||
|
# that you indicate whether you support Python 2, Python 3 or both.
|
||||||
|
'Programming Language :: Python :: 3',
|
||||||
|
'Programming Language :: Python :: 3.5',
|
||||||
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
|
],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue