Skip to content
Snippets Groups Projects
Commit ceb48010 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Use find_packages

parent aad04c41
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
# -*- coding: latin1 -*-
from setuptools import setup
from setuptools import setup, find_packages
ver_dic = {}
version_file = open("loopy/version.py")
......@@ -49,10 +49,5 @@ setup(name="loo.py",
url="http://mathema.tician.de/software/loopy",
author_email="inform@tiker.net",
license="MIT",
packages=[
"loopy",
"loopy.codegen",
"loopy.kernel",
"loopy.library",
],
packages=find_packages(),
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment