This repository was archived by the owner on Sep 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
86 lines (69 loc) · 2.78 KB
/
setup.py
File metadata and controls
86 lines (69 loc) · 2.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# -*- coding: utf-8 -*-
from __future__ import absolute_import
import io
import os
import re
import sys
import codecs
from setuptools import setup
from setuptools.command.test import test as TestCommand
rootpath = os.path.abspath(os.path.dirname(__file__))
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.verbose = True
def run_tests(self):
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
def read(*parts):
return open(os.path.join(rootpath, *parts), 'r').read()
def extract_version():
version = None
fname = os.path.join(rootpath, 'gsw', '__init__.py')
with open(fname) as f:
for line in f:
if (line.startswith('__version__')):
_, version = line.split('=')
version = version.strip()[1:-1] # Remove quotation characters
break
return version
email = "ocefpaf@gmail.com"
maintainer = "Filipe Fernandes"
authors = ['Eric Firing', u'Bjørn Ådlandsvik', 'Filipe Fernandes']
LICENSE = read('LICENSE.txt')
long_description = '{}\n{}'.format(read('README.rst'), read('CHANGES.txt'))
with open('requirements-dev.txt') as f:
tests_require = f.readlines()
tests_require = [t.strip() for t in tests_require]
config = dict(name='gsw',
version=extract_version(),
packages=['gsw', 'gsw/gibbs', 'gsw/utilities', 'gsw/test'],
package_data={'gsw': ['utilities/data/*.npz']},
cmdclass=dict(test=PyTest),
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 :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Education',
'Topic :: Scientific/Engineering',
],
description='Gibbs Seawater Oceanographic Package of TEOS-10',
author=authors,
author_email=email,
maintainer=maintainer,
maintainer_email=email,
url='https://github.com/TEOS-10/python-gsw',
download_url='https://pypi.python.org/pypi/gsw/',
platforms='any',
keywords=['oceanography', 'seawater', 'TEOS-10', 'gibbs'],
install_requires=['numpy'],
tests_require=tests_require,
)
setup(**config)