Revert namespace package search to normal package search (#1545)

* Revert this

* typos

* version++

Co-authored-by: J. Borovec <jirka.borovec@seznam.cz>
This commit is contained in:
Justus Schock
2020-04-21 08:26:47 -04:00
committed by GitHub
co-authored by J. Borovec
parent 8035c10f37
commit 29c7d2f195
4 changed files with 9 additions and 12 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
import os
from io import open
# Always prefer setuptools over distutils
from setuptools import setup, find_namespace_packages
from setuptools import setup, find_packages
try:
import builtins
@@ -57,7 +57,7 @@ setup(
url=pytorch_lightning.__homepage__,
download_url='https://github.com/PyTorchLightning/pytorch-lightning',
license=pytorch_lightning.__license__,
packages=find_namespace_packages(exclude=['tests', 'tests/*', 'benchmarks']),
packages=find_packages(exclude=['tests', 'tests/*', 'benchmarks']),
long_description=load_long_describtion(),
long_description_content_type='text/markdown',