forked from ledm/bgc-val
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·191 lines (166 loc) · 5.16 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
#!/usr/bin/env python
"""BGCVal installation script."""
# This script only installs dependencies available on PyPI
import json
import os
import re
import sys
from pathlib import Path
from setuptools import Command, setup
sys.path.insert(0, os.path.dirname(__file__))
PACKAGES = [
'bgcval',
]
REQUIREMENTS = {
# Installation script (this file) dependencies
'setup': [
'setuptools_scm',
],
# Installation dependencies
# Use with pip install . to install from source
'install': [
'basemap',
'cartopy',
'matplotlib',
'netcdf4',
'numpy',
'pip!=21.3',
'pyyaml',
'scipy',
],
# Test dependencies
# Execute 'python setup.py test' to run tests
'test': [
'flake8<4',
'pytest>=3.9,!=6.0.0rc1,!=6.0.0',
'pytest-cov>=2.10.1',
'pytest-env',
'pytest-flake8>=1.0.6',
'pytest-html!=2.1.0',
'pytest-metadata>=1.5.1',
'pytest-mypy',
'pytest-mock',
'pytest-xdist',
],
# Development dependencies
# Use pip install -e .[develop] to install in development mode
'develop': [
'autodocsumm',
'codespell',
'docformatter',
'isort',
'pre-commit',
'prospector[with_pyroma,with_mypy]!=1.1.6.3,!=1.1.6.4',
'sphinx>2',
'sphinx_rtd_theme',
'vprof',
'yamllint',
'yapf',
],
}
def discover_python_files(paths, ignore):
"""Discover Python files."""
def _ignore(path):
"""Return True if `path` should be ignored, False otherwise."""
return any(re.match(pattern, path) for pattern in ignore)
for path in sorted(set(paths)):
for root, _, files in os.walk(path):
if _ignore(path):
continue
for filename in files:
filename = os.path.join(root, filename)
if (filename.lower().endswith('.py')
and not _ignore(filename)):
yield filename
class CustomCommand(Command):
"""Custom Command class."""
def install_deps_temp(self):
"""Try to temporarily install packages needed to run the command."""
if self.distribution.install_requires:
self.distribution.fetch_build_eggs(
self.distribution.install_requires)
if self.distribution.tests_require:
self.distribution.fetch_build_eggs(self.distribution.tests_require)
class RunLinter(CustomCommand):
"""Class to run a linter and generate reports."""
user_options: list = []
def initialize_options(self):
"""Do nothing."""
def finalize_options(self):
"""Do nothing."""
def run(self):
"""Run prospector and generate a report."""
check_paths = PACKAGES + [
'setup.py',
'tests',
]
ignore = [
'doc/',
]
# try to install missing dependencies and import prospector
try:
from prospector.run import main
except ImportError:
# try to install and then import
self.distribution.fetch_build_eggs(['prospector[with_pyroma]'])
from prospector.run import main
self.install_deps_temp()
# run linter
# change working directory to package root
package_root = os.path.abspath(os.path.dirname(__file__))
os.chdir(package_root)
# write command line
files = discover_python_files(check_paths, ignore)
sys.argv = ['prospector']
sys.argv.extend(files)
# run prospector
errno = main()
sys.exit(errno)
setup(
name='BGCVal',
version="2.0",
author="Lee and V",
description="Prototype for BGCVal 2.0",
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
url='',
download_url='',
license='probably GPL',
classifiers=[
'Development Status :: 0 - initial',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: probably GPL',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Scientific/Engineering :: Hydrology',
'Topic :: Scientific/Engineering :: Physics',
],
packages=PACKAGES,
# Include all version controlled files
include_package_data=True,
setup_requires=REQUIREMENTS['setup'],
install_requires=REQUIREMENTS['install'],
tests_require=REQUIREMENTS['test'],
extras_require={
'develop': REQUIREMENTS['develop'] + REQUIREMENTS['test'],
'test': REQUIREMENTS['test'],
},
#entry_points={
# 'console_scripts': [
# 'bgcval = bgcval._main:run',
# ],
#},
cmdclass={
# 'test': RunTests,
'lint': RunLinter,
},
zip_safe=False,
)