-
Notifications
You must be signed in to change notification settings - Fork 48
/
setup.py
executable file
·186 lines (145 loc) · 6.07 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
"""
Copyright 2019 European Union
Licensed under the EUPL, Version 1.2 or as soon they will be approved by the European Commission subsequent versions of the EUPL (the "Licence");
You may not use this work except in compliance with the Licence.
You may obtain a copy of the Licence at:
https://joinup.ec.europa.eu/sites/default/files/inline-files/EUPL%20v1_2%20EN(1).txt
Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the Licence for the specific language governing permissions and limitations under the Licence.
---------------------------------------------------------------------------------------------------------------------------------------
Use python setup.y publish to publish versioned tags and pypi package
IMPORTANT Note:
To test pip installation:
python setup.py testpypi
pip install --index-url https://test.pypi.org/simple/ lisflood-model==2.8.14
To publish on PyPi:
python setup.py publish
It's equivalent to:
1. python setup.py sdist
2. twine upload dist/*
3. git tag {version}
4. git push --tags
Install
pip install lisflood-model
"""
import os
import subprocess
import sys
from glob import glob
from shutil import rmtree
from setuptools import find_packages, Extension, setup, Command, __path__ as setuppath
pip_package = os.path.normpath(os.path.join(setuppath[0], '../lisflood'))
if os.path.exists(pip_package):
print('[-] Removing current package installed {}'.format(pip_package))
rmtree(pip_package)
current_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.append(os.path.join(current_dir, './src/'))
from lisflood import __authors__
version_file = os.path.join(current_dir, 'VERSION')
with open(version_file, 'r') as f:
version = f.read().strip()
print(">>>>>>>>>>>>>>>> Building LISFLOOD version {} <<<<<<<<<<<<<<<<<<".format(version))
readme_file = os.path.join(current_dir, 'README.md')
with open(readme_file, 'r') as f:
long_description = f.read()
class UploadCommand(Command):
"""Support setup.py upload."""
description = 'Publish lisflood-model package.'
user_options = []
@staticmethod
def print_console(s):
print('\033[1m{0}\033[0m'.format(s))
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
try:
self.print_console('Removing previous builds...')
rmtree(os.path.join(current_dir, 'dist'))
except OSError:
pass
self.print_console('Building Source and Wheel (universal) distribution...')
os.system('{} setup.py sdist'.format(sys.executable))
self.print_console('Uploading the package to PyPI via Twine...')
os.system('twine upload dist/*')
self.print_console('Pushing git tags...')
os.system('git tag v{}'.format(version))
os.system('git push --tags')
sys.exit()
class UploadCommandTest(UploadCommand):
def run(self):
try:
self.print_console('Removing previous builds...')
rmtree(os.path.join(current_dir, 'dist'))
except OSError:
pass
self.print_console('Building Source and Wheel (universal) distribution...')
os.system('{} setup.py sdist'.format(sys.executable))
self.print_console('Uploading the package to test PyPI via Twine...')
os.system('twine upload --repository testpypi dist/*')
sys.exit()
def _get_gdal_version():
try:
p = subprocess.Popen(['gdal-config', '--version'], stdout=subprocess.PIPE)
except FileNotFoundError:
raise SystemError('gdal-config not found.'
'GDAL seems not installed. '
'Please, install GDAL binaries and libraries for your system '
'and then install the relative pip package.')
else:
return p.communicate()[0].splitlines()[0].decode()
gdal_version = _get_gdal_version()
req_file = 'requirements.txt'
requirements = [l for l in open(req_file).readlines() if l and not l.startswith('#')]
requirements += ['GDAL=={}'.format(gdal_version)]
setup(
name='lisflood-model',
version=version,
package_dir={'': 'src/'},
py_modules=[os.path.splitext(os.path.basename(path))[0] for path in glob('src/*.py*')],
include_package_data=True,
data_files=[('', ['VERSION']), ('settings', ['src/lisfloodSettings_reference.xml'])],
packages=find_packages('src'),
long_description=long_description,
long_description_content_type='text/markdown',
description='LISFLOOD model python module',
author=__authors__,
author_email='carlo.russo@ext.ec.europa.eu',
keywords=['lisflood', 'lisvap', 'efas', 'glofas', 'copernicus', 'ecmwf'],
license='EUPL 1.2',
url='https://github.com/ec-jrc/lisflood-code',
download_url='https://github.com/ec-jrc/lisflood-code/archive/{}.tar.gz'.format(version),
setup_requires=[
'nine',
'setuptools>=41.0',
'numpy>=1.15',
],
install_requires=requirements,
scripts=['bin/lisflood'],
zip_safe=True,
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Physics',
],
# setup.py publish to pypi.
cmdclass={
'upload': UploadCommand,
'publish': UploadCommand,
'testpypi': UploadCommandTest,
},
)