-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 #1 from ebrevdo/setup_py
Added setup.py which runs unit tests as necessary.
- Loading branch information
Showing
3 changed files
with
19 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env python | ||
|
||
try: | ||
from setuptools import setup | ||
except: | ||
from distutils.core import setup | ||
|
||
setup(name='scidata', | ||
version='0.01', | ||
description='Objects for holding self describing scientific data in python', | ||
author='Alex Kleeman', | ||
author_email='TODO', | ||
install_requires=['scipy >= 0.10.0', 'numpy >= 1.7', 'netCDF4 >= 1.0.6'], | ||
tests_require=['nose >= 1.0'], | ||
url='https://github.com/akleeman/scidata', | ||
test_suite='nose.collector', | ||
packages=['polyglot'], | ||
package_dir={'polyglot': 'src/polyglot'}) |
Empty file.
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