Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Commit

Permalink
minor code style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ocefpaf committed Apr 20, 2018
1 parent 875efae commit b6cf3ed
Showing 1 changed file with 30 additions and 28 deletions.
58 changes: 30 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from __future__ import absolute_import, division, print_function

import os
import sys
import versioneer
from setuptools import find_packages, setup

Expand All @@ -25,30 +24,33 @@ def read(*parts):
install_requires = [t.strip() for t in tests_require]


setup(name='ioos_tools',
version=versioneer.get_version(),
packages=find_packages(),
cmdclass=versioneer.get_cmdclass(),
license=LICENSE,
long_description=long_description,
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Education',
'Topic :: Scientific/Engineering'],
description='Misc functions for IOOS notebooks',
author=authors,
author_email=email,
maintainer='Filipe Fernandes',
maintainer_email=email,
url='https://github.com/pyoceans/ioos_tools/releases',
platforms='any',
keywords=['oceanography', 'data analysis'],
install_requires=install_requires,
zip_safe=False,
)
setup(
name='ioos_tools',
version=versioneer.get_version(),
packages=find_packages(),
cmdclass=versioneer.get_cmdclass(),
license=LICENSE,
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Education',
'Topic :: Scientific/Engineering'
],
description='Misc functions for IOOS notebooks',
author=authors,
author_email=email,
maintainer='Filipe Fernandes',
maintainer_email=email,
url='https://github.com/pyoceans/ioos_tools/releases',
platforms='any',
keywords=['oceanography', 'data analysis'],
install_requires=install_requires,
zip_safe=False,
)

0 comments on commit b6cf3ed

Please sign in to comment.