Browse Source

Revert some packaging changes to a working state still figured out

Michael Hanke 4 years ago
parent
commit
4a5f2a638d
2 changed files with 5 additions and 2 deletions
  1. 0 1
      setup.cfg
  2. 5 1
      setup.py

+ 0 - 1
setup.cfg

@@ -11,7 +11,6 @@ install_requires =
     sphinxcontrib-plantuml
     autorunrecord
 
-packages = find:
 include_package_data = True
 
 [versioneer]

+ 5 - 1
setup.py

@@ -2,7 +2,10 @@
 # -*- coding: utf-8 -*-
 
 import sys
-from setuptools import setup
+from setuptools import (
+    setup,
+    find_packages,
+)
 import versioneer
 
 # Give setuptools a hint to complain if it's too old a version
@@ -17,4 +20,5 @@ if __name__ == '__main__':
           version=versioneer.get_version(),
           cmdclass=versioneer.get_cmdclass(),
           setup_requires=SETUP_REQUIRES,
+          packages=find_packages(),
           )