11from __future__ import (absolute_import , division , print_function )
22
33import os
4- import sys
4+
55from setuptools import setup
66
7+ rootpath = os .path .abspath (os .path .dirname (__file__ ))
8+
79
810def extract_version (module = 'ctd' ):
911 version = None
@@ -18,8 +20,6 @@ def extract_version(module='ctd'):
1820 break
1921 return version
2022
21- rootpath = os .path .abspath (os .path .dirname (__file__ ))
22-
2323
2424def read (* parts ):
2525 return open (os .path .join (rootpath , * parts ), 'r' ).read ()
@@ -37,17 +37,18 @@ def read(*parts):
3737 version = extract_version (),
3838 license = LICENSE ,
3939 long_description = long_description ,
40- classifiers = ['Development Status :: 5 - Production/Stable' ,
41- 'Environment :: Console' ,
42- 'Intended Audience :: Science/Research' ,
43- 'Intended Audience :: Developers' ,
44- 'Intended Audience :: Education' ,
45- 'License :: OSI Approved :: BSD' ,
46- 'Operating System :: OS Independent' ,
47- 'Programming Language :: Python' ,
48- 'Topic :: Scientific/Engineering' ,
49- 'Topic :: Education' ,
50- ],
40+ classifiers = [
41+ 'Development Status :: 5 - Production/Stable' ,
42+ 'Environment :: Console' ,
43+ 'Intended Audience :: Science/Research' ,
44+ 'Intended Audience :: Developers' ,
45+ 'Intended Audience :: Education' ,
46+ 'License :: OSI Approved :: BSD' ,
47+ 'Operating System :: OS Independent' ,
48+ 'Programming Language :: Python' ,
49+ 'Topic :: Scientific/Engineering' ,
50+ 'Topic :: Education' ,
51+ ],
5152 description = 'Tools to load hydrographic data as DataFrames' ,
5253 author = 'Filipe Fernandes' ,
5354 author_email = 'ocefpaf@gmail.com' ,
0 commit comments