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

Use find_packages

parent cd626ad0
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: latin-1 -*- # -*- coding: latin-1 -*-
from setuptools import setup from setuptools import setup, find_packages
ver_dic = {} ver_dic = {}
version_file = open("pymbolic/version.py") version_file = open("pymbolic/version.py")
...@@ -40,11 +40,7 @@ setup(name="pymbolic", ...@@ -40,11 +40,7 @@ setup(name="pymbolic",
license="MIT", license="MIT",
url="http://mathema.tician.de/software/pymbolic", url="http://mathema.tician.de/software/pymbolic",
packages=[ packages=find_packages(),
"pymbolic",
"pymbolic.mapper",
"pymbolic.geometric_algebra",
],
install_requires=[ install_requires=[
"pytools>=2", "pytools>=2",
"pytest>=2.3", "pytest>=2.3",
......
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