-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (31 loc) · 1.4 KB
/
setup.py
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
from setuptools import setup
setup(name='opec',
version='1.1-SNAPSHOT',
description='The Benchmarking Tool of the EU Operational Ecology project, OpEc',
author='Thomas Storm',
author_email='[email protected]',
url='http://marine-opec.eu/',
packages=['opec', 'test'],
data_files=[
'default.properties',
('resources', ['resources/test.nc',
'resources/test_without_records.nc',
'resources/test_only_reference.nc',
'resources/test_with_two_ref_vars.nc',
'resources/test_without_depth.nc',
'resources/test_including_fill_values.nc',
'resources/test_single_model_fill_values.nc',
'resources/ogs_test_smaller.nc',
'resources/test.properties',
'resources/analysis-summary.xsl',
'resources/matchup_report_template.xml',
'resources/styleset.css',
'resources/default.properties'
])],
requires=['numpy (>= 1.6.2)',
'scipy (>= 0.11.0)',
'netCDF4 (>= 1.0.1)',
'nose (>= 1.2.1)',
'mako (>= 0.7.3)',
'matplotlib (>= 1.2.0)'],
)