Skip to content

Commit

Permalink
Renamed source directory and fixed built distribution missing data files
Browse files Browse the repository at this point in the history
  • Loading branch information
ayshih committed Feb 10, 2016
1 parent 92d2229 commit 194c228
Show file tree
Hide file tree
Showing 28 changed files with 16 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
*.pyd
*.so

gripspy/util/checksum.c
gripspy/util/checksum.html
gripspy/util/coincidence.c
gripspy/util/coincidence.html
src/util/checksum.c
src/util/checksum.html
src/util/coincidence.c
src/util/coincidence.html


build
Expand Down
9 changes: 5 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
recursive-include gripspy *.py
recursive-include gripspy *.pyx
recursive-include gripspy *.txt
recursive-include gripspy *.npz
recursive-include src *.py
recursive-include src *.pyx

recursive-include src *.txt
recursive-include src *.npz

include README.md
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@

from Cython.Build import cythonize

ext_modules = [Extension("gripspy.util.checksum", ["gripspy/util/checksum.pyx"]),
Extension("gripspy.util.coincidence", ["gripspy/util/coincidence.pyx"])]
ext_modules = [Extension("gripspy.util.checksum", ["src/util/checksum.pyx"]),
Extension("gripspy.util.coincidence", ["src/util/coincidence.pyx"])]

setup(
name='gripspy',
version='0.1',
author='',
author_email='',
author='Albert Y. Shih',
author_email='ayshih@gmail.com',
packages=find_packages(),
package_dir={'gripspy': 'src'},
include_package_data=True,
install_requires=['numpy',
'scipy',
'matplotlib',
Expand All @@ -20,6 +22,6 @@
ext_modules = cythonize(ext_modules, annotate=True),
url='',
license='See LICENSE.txt',
description='',
description='Python package for GRIPS data analysis',
long_description=open('README.md').read(),
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 194c228

Please sign in to comment.