Skip to content

Commit 683f7f5

Browse files
committed
turn single module into a package
1 parent 806d332 commit 683f7f5

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

python/cdo/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
__author__ = "Brian Earl Spilner [email protected]"
2+
__version__ = "1.6"
3+
4+
from cdo import Cdo
File renamed without changes.

python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
2121
AUTHOR = 'Ralf Mueller'
2222
REQUIRES_PYTHON = '>=2.7.0'
23-
VERSION = '1.5.7'
23+
VERSION = '1.6'
2424

2525
# What packages are required for this module to be executed?
2626
REQUIRED = [
@@ -106,7 +106,7 @@ def run(self):
106106
author_email=EMAIL,
107107
python_requires=REQUIRES_PYTHON,
108108
url=URL,
109-
py_modules = ["cdo"],
109+
packages = ["cdo"],
110110
install_requires=REQUIRED,
111111
extras_require=EXTRAS,
112112
include_package_data=True,

0 commit comments

Comments
 (0)