Skip to content

Commit 64a9e11

Browse files
committed
fixed setup.py to include rgb data input files and added mostly empty init file
1 parent 5c79f03 commit 64a9e11

2 files changed

Lines changed: 14 additions & 12 deletions

File tree

‎cmtamu/__init__.py‎

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
'''
2-
cmtamu is a package to help standardize colormaps for commonly-plotted
3-
oceanographic properties in the Oceanography department at Texas A&M.
4-
5-
See README.md for an overview on instructions.
2+
cmtamu oceanography colormaps
63
'''
74

8-
import cmtamu
9-
import test
10-
import tools
11-
12-
__authors__ = ['Kristen Thyng <kthyng@tamu.edu>']
5+
__authors__ = ['Kristen Thyng <kthyng@gmail.com>']

‎setup.py‎

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88
from setuptools import setup # to support "develop" mode
99
# from numpy.distutils.core import setup, Extension
1010

11+
# cmtamu_mod = Extension(name = "cmtamu",
12+
# sources=['rgb/*',
13+
# ],
14+
# )
15+
16+
# print cmtamu_mod
17+
1118
setup(
1219
name = "cmtamu",
1320
version = "0.01",
@@ -19,8 +26,10 @@
1926
"Development Status :: 3 - Alpha",
2027
# "Topic :: Utilities",
2128
],
22-
packages = ["cmtamu"],
23-
# py_modules = modules,
24-
ext_package='cmtamu',
29+
data_files=[('rgb', '*')],
30+
packages = 'cmtamu',
31+
# py_modules = cmtamu_mod,
32+
# ext_package='cmtamu',
33+
# ext_modules = [cmtamu_mod],
2534
scripts = [],
2635
)

0 commit comments

Comments
 (0)