fixing setup

This commit is contained in:
William Falcon
2019-04-21 13:02:11 -04:00
parent aeef648199
commit bb75bdf87b
20 changed files with 2 additions and 16 deletions
View File
+2 -6
View File
@@ -3,14 +3,11 @@
from setuptools import setup, find_packages, os
# https://packaging.python.org/guides/single-sourcing-package-version/
version = {}
with open(os.path.join("src", "pytorch-lightning", "__init__.py")) as fp:
exec(fp.read(), version)
# http://blog.ionelmc.ro/2014/05/25/python-packaging/
setup(
name="pytorch-lightning",
version=version["__version__"],
version='0.1.dev11',
description="The Keras for ML researchers using PyTorch",
author="William Falcon",
author_email="waf2107@columbia.edu",
@@ -38,8 +35,7 @@ setup(
"jupyter-client",
]
},
packages=find_packages("src"),
package_dir={"": "src"},
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
-10
View File
@@ -1,10 +0,0 @@
"""
=================
pytorch-lightning
=================
The Keras for ML researchers using PyTorch. More control. Less boilerplate.
"""
__version__ = "0.1.dev11"