-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from caspervdw/osx-implement
ENH OSX implementation
- Loading branch information
Showing
6 changed files
with
21 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+171 Bytes
pims_nd2/ND2SDK/osx/nd2sdk.framework/Versions/1/Headers/._nd2ReadSDK.h
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,21 +15,27 @@ | |
|
||
setup_parameters = dict( | ||
name="pims_nd2", | ||
version="0.3", | ||
version="0.4", | ||
description="ND2SDK wrapper for PIMS", | ||
author="Casper van der Wel", | ||
install_requires=['pims>=0.3'], | ||
author_email="[email protected]", | ||
url="https://github.com/soft-matter/pims_nd2", | ||
download_url="https://github.com/soft-matter/pims_nd2/tarball/0.3", | ||
download_url="https://github.com/soft-matter/pims_nd2/tarball/0.4", | ||
packages=['pims_nd2'], | ||
include_package_data=True, | ||
platforms=[ | ||
# 'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: Microsoft :: Windows :: Windows 7', | ||
'Operating System :: Microsoft :: Windows :: Windows Vista', | ||
'Operating System :: POSIX :: Linux', | ||
], | ||
classifiers=["Development Status :: 4 - Beta", | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: C", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS"], | ||
platforms=['MacOS X', 'Windows', 'Linux CentOs 6.5/7', 'Linux Debian 7/8'], | ||
long_description=descr) | ||
|
||
setup(**setup_parameters) |