Skip to content

Commit dd6abd1

Browse files
committed
first commit
0 parents  commit dd6abd1

32 files changed

+6073
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__pycache__

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM python:3.8-slim-bullseye
2+
3+
4+
5+
# Install Stardist and tensorflow and its dependencies
6+
COPY requirements.txt /tmp/
7+
RUN pip3 install -r /tmp/requirements.txt
8+
9+
# --------------------------------------------------------------------------------------------
10+
# Install scripts
11+
COPY descriptor.json /app/descriptor.json
12+
COPY run.py /app/run.py
13+
14+
ENTRYPOINT ["python3", "/app/run.py"]

cytomine/__init__.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# -*- coding: utf-8 -*-
2+
3+
# * Copyright (c) 2009-2022. Authors: see NOTICE file.
4+
# *
5+
# * Licensed under the Apache License, Version 2.0 (the "License");
6+
# * you may not use this file except in compliance with the License.
7+
# * You may obtain a copy of the License at
8+
# *
9+
# * http://www.apache.org/licenses/LICENSE-2.0
10+
# *
11+
# * Unless required by applicable law or agreed to in writing, software
12+
# * distributed under the License is distributed on an "AS IS" BASIS,
13+
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# * See the License for the specific language governing permissions and
15+
# * limitations under the License.
16+
17+
__author__ = "Rubens Ulysse <urubens@uliege.be>"
18+
__contributors__ = ["Marée Raphaël <raphael.maree@uliege.be>", "Mormont Romain <r.mormont@uliege.be>"]
19+
__copyright__ = "Copyright 2010-2022 University of Liège, Belgium, http://www.cytomine.be/"
20+
21+
from .cytomine import Cytomine
22+
from .cytomine_job import CytomineJob, CytomineJobLogger, CytomineJobProgressMonitor

0 commit comments

Comments
 (0)