Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lukecampbell committed Mar 8, 2013
0 parents commit c448b29
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 0 deletions.
Binary file added .setup.py.swp
Binary file not shown.
Empty file added LICENSE.txt
Empty file.
Empty file added README.md
Empty file.
Binary file added ion_functions/.__init__.py.swp
Binary file not shown.
Binary file added ion_functions/.version.py.swp
Binary file not shown.
1 change: 1 addition & 0 deletions ion_functions/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from version import version as __version__
1 change: 1 addition & 0 deletions ion_functions/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version = '0.0.1'
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
from setuptools import setup, find_packages

packages = find_packages()

classifiers = ''' Intended Audience :: Science/Research
Intended Audience :: Developers
Intended Audience :: Education
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Education
Topic :: Software Development :: Libraries :: Python Modules'''

setup(name = 'ion_functions',
version='0.0.1',
description='Python Function collection for ION',
long_description=open('README.md').read(),
license='LICENSE.txt',
author='Luke Campbell',
author_email='[email protected]',
url='https://github.com/ooici/ion_functions/',
classifiers=classifiers.split('\n'),
packages=packages,
keywords=['oceanography', 'seawater'],
setup_requires=[],
)




0 comments on commit c448b29

Please sign in to comment.