Skip to content

Commit

Permalink
(1) Restructured project tree. (2) Changed tests into a unittest.
Browse files Browse the repository at this point in the history
  • Loading branch information
aarpon committed Jul 11, 2013
1 parent 6a0c5b5 commit 9244048
Show file tree
Hide file tree
Showing 17 changed files with 228 additions and 596 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.pyc
build/

2 changes: 1 addition & 1 deletion .pydevproject
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?eclipse-pydev version="1.0"?><pydev_project>
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
<path>/pIceImarisConnector/src</path>
<path>/pIceImarisConnector/pIceImarisConnector</path>
</pydev_pathproperty>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 2.7</pydev_property>
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">Python 2.7</pydev_property>
Expand Down
File renamed without changes.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
recursive-include doc/html *
prune doc/html/.doctrees/
exclude doc/html/.buildinfo
include LICENSE.txt
1 change: 1 addition & 0 deletions README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
IceImarisConnector for python (pIceImarisConnector) is a simple commodity class that eases communication between Bitplane Imaris and python using the Imaris XT interface.
1 change: 1 addition & 0 deletions pIceImarisConnector/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__all__ = ['pIceImarisConnector']
File renamed without changes.
31 changes: 31 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
from distutils.core import setup
import sys

sys.path.append('pIceImarisConnector')
import pIceImarisConnector


setup(name='pIceImarisConnector',
version='0.3.2',
author='Aaron Ponti',
author_email='[email protected]',
url='http://www.scs2.net/next/index.php?id=110',
download_url='http://www.scs2.net/next/index.php?id=110',
description='IceImarisConnector for python (pIceImarisConnector) is a simple commodity class that eases communication between Bitplane Imaris and python using the Imaris XT interface.',
long_description='',
package_dir={'': 'pIceImarisConnector'},
package_data={'pIceImarisConnectorTestUnit': ['./PyramidalCell.ims']},
py_modules=['pIceImarisConnector'],
provides=['pIceImarisConnector'],
keywords='Imaris ImarisXT python',
license='GPL2.0',
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Topic :: Scientific/Engineering'
],
)
2 changes: 0 additions & 2 deletions src/.gitignore

This file was deleted.

56 changes: 0 additions & 56 deletions src/main.py

This file was deleted.

1 change: 0 additions & 1 deletion src/pIceImarisConnector/__init__.py

This file was deleted.

27 changes: 0 additions & 27 deletions src/pIceImarisConnector/setup.py

This file was deleted.

Empty file.
Loading

0 comments on commit 9244048

Please sign in to comment.