We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11c49c4 commit 9f693d3Copy full SHA for 9f693d3
setup.py
@@ -1,7 +1,7 @@
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
4
-from setuptools import setup
+from setuptools import find_packages, setup
5
6
with open('README.rst') as readme_file:
7
readme = readme_file.read()
@@ -14,10 +14,7 @@
14
author="Lourens Veen",
15
author_email='[email protected]',
16
url='https://github.com/multiscale/ymmsl-python',
17
- packages=[
18
- 'ymmsl',
19
- ],
20
- package_dir={'ymmsl': 'ymmsl'},
+ packages=find_packages(include=['ymmsl.*']),
21
include_package_data=True,
22
license="Apache Software License 2.0",
23
zip_safe=False,
0 commit comments