Skip to content

Commit

Permalink
Revert "Renamed source directory and fixed built distribution missing…
Browse files Browse the repository at this point in the history
… data files"

This reverts commit 194c228.
  • Loading branch information
ayshih committed Feb 10, 2016
1 parent 194c228 commit 59e73a6
Show file tree
Hide file tree
Showing 28 changed files with 13 additions and 16 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

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


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

recursive-include src *.txt
recursive-include src *.npz
recursive-include gripspy *.py
recursive-include gripspy *.pyx
recursive-include gripspy *.txt
recursive-include gripspy *.npz

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

from Cython.Build import cythonize

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

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

0 comments on commit 59e73a6

Please sign in to comment.