forked from castelao/seabird
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
67 lines (59 loc) · 1.97 KB
/
setup.py
File metadata and controls
67 lines (59 loc) · 1.97 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Licensed under a 3-clause BSD style license - see LICENSE.rst
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from codecs import open
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
with open('HISTORY.rst', encoding='utf-8') as f:
history = f.read().replace('.. :changelog:', '')
with open('requirements.txt', encoding='utf-8') as f:
requirements = f.read()
with open('requirements_dev.txt', encoding='utf-8') as f:
requirements_test = f.read()
setup(
name='seabird',
version='0.11.4',
description="Parser for Sea-Bird's CTD and TSG.",
long_description=readme + '\n\n' + history,
author='Guilherme Castelao , Luiz Irber',
author_email='guilherme@castelao.net, luiz.irber@gmail.com',
url='http://seabird.castelao.net',
packages=[
'seabird',
],
package_dir={'seabird':
'seabird'},
include_package_data=True,
install_requires=requirements,
license='3-clause BSD',
zip_safe=False,
keywords='oceanography ocean data CTD TSG SeaBird hydrography parser',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
],
entry_points={
'console_scripts':
['seabird=seabird.cli:cli']
},
platforms='any',
extras_require={
'test': requirements_test,
'CDF': ["netCDF4>=1.4"],
'QC': ["cotede>=0.20.2"]
}
)