Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
E
extract_cyclones
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
cyclobs
extract_cyclones
Commits
bbc02554
Commit
bbc02554
authored
May 25, 2020
by
CEVAER
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial project structure
parent
7319b4ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
0 deletions
+34
-0
bin/extractSmapCyclone.py
bin/extractSmapCyclone.py
+9
-0
setup.py
setup.py
+25
-0
No files found.
bin/extractSmapCyclone.py
0 → 100644
View file @
bbc02554
import
argparse
import
logging
logging
.
basicConfig
()
logger
=
logging
.
getLogger
(
os
.
path
.
basename
(
__file__
))
logger
.
setLevel
(
logging
.
INFO
)
if
__name__
==
"__main__"
:
pass
\ No newline at end of file
setup.py
0 → 100644
View file @
bbc02554
from
setuptools
import
setup
,
find_packages
import
os
import
sys
from
pathlib
import
Path
import
glob
install_requires
=
[
]
setup
(
name
=
'smap_cyclones'
,
description
=
'cyclobs web server'
,
url
=
'https://gitlab.ifremer.fr/cyclobs/cyclobs'
,
author
=
"Théo CEVAER"
,
author_email
=
"theo.cevaer@ifremer.fr"
,
license
=
'GPL'
,
packages
=
find_packages
(),
include_package_data
=
True
,
scripts
=
glob
.
glob
(
'bin/**'
),
use_scm_version
=
True
,
setup_requires
=
[
'setuptools_scm'
ss
],
install_requires
=
install_requires
,
data_files
=
[
(
os
.
path
.
dirname
(
p
)
,
[
p
]
)
for
p
in
glob
.
glob
(
'etc/**'
,
recursive
=
True
)
if
not
os
.
path
.
isdir
(
p
)
],
zip_safe
=
False
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment