Skip to content

Commit e41c963

Browse files
committed
Fix lints
1 parent 6efb593 commit e41c963

1 file changed

Lines changed: 15 additions & 14 deletions

File tree

setup.py

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
from __future__ import (absolute_import, division, print_function)
22

33
import os
4-
import sys
4+
55
from setuptools import setup
66

7+
rootpath = os.path.abspath(os.path.dirname(__file__))
8+
79

810
def 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

2424
def 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

Comments
 (0)