Skip to content

Commit 9f693d3

Browse files
committed
Fix packaging
1 parent 11c49c4 commit 9f693d3

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4-
from setuptools import setup
4+
from setuptools import find_packages, setup
55

66
with open('README.rst') as readme_file:
77
readme = readme_file.read()
@@ -14,10 +14,7 @@
1414
author="Lourens Veen",
1515
author_email='[email protected]',
1616
url='https://github.com/multiscale/ymmsl-python',
17-
packages=[
18-
'ymmsl',
19-
],
20-
package_dir={'ymmsl': 'ymmsl'},
17+
packages=find_packages(include=['ymmsl.*']),
2118
include_package_data=True,
2219
license="Apache Software License 2.0",
2320
zip_safe=False,

0 commit comments

Comments
 (0)