EOX GitLab Instance
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Data Handling
core
Commits
adee85b4
Commit
adee85b4
authored
3 years ago
by
Nikola Jankovic
Browse files
Options
Downloads
Patches
Plain Diff
added dev information and reduced mypy imports
parent
32505444
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2
added dev tooling and linting
Pipeline
#19028
passed
3 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+23
-1
23 additions, 1 deletion
README.md
setup.cfg
+0
-33
0 additions, 33 deletions
setup.cfg
with
23 additions
and
34 deletions
README.md
+
23
−
1
View file @
adee85b4
...
...
@@ -8,7 +8,29 @@ Contains core services for the View server - renderer and registrar
This repository uses
`bump2version`
for managing tags. To bump a version use
```
```
shell
bump2version
--new-version
<new_version>
# or bump2version <major|minor|patch>
git push
&&
git push
--tags
```
## Development
To setup for development run the following commands for your virtual env.
```
shell
pip
install
-r
requirements.txt
pip
install
-r
requirements-dev.txt
pip
install
-r
requirements-test.txt
```
Flake8, mypy and black can be ran as commands from terminal:
```
shell
flake8
# at the root folder
mypy
.
# at the root folder
black file.py
# to autoformat a file. also possible with a path
```
Or these tools can also be integrated into your IDE/Editor.
-
[
VSCODE
](
https://code.visualstudio.com/docs/python/linting
)
This diff is collapsed.
Click to expand it.
setup.cfg
+
0
−
33
View file @
adee85b4
...
...
@@ -5,37 +5,4 @@ ignore = W503,E203
[mypy]
exclude
=
(.venv|build|tests)
[mypy-jsonschema.*]
ignore_missing_imports
=
True
[mypy-setuptools.*]
ignore_missing_imports
=
True
[mypy-pystac.*]
ignore_missing_imports
=
True
[mypy-pygeofilter.*]
ignore_missing_imports
=
True
[mypy-boto3.*]
ignore_missing_imports
=
True
[mypy-botocore.*]
ignore_missing_imports
=
True
[mypy-lxml.*]
ignore_missing_imports
=
True
[mypy-osgeo.*]
ignore_missing_imports
=
True
[mypy-eoxserver.*]
ignore_missing_imports
=
True
[mypy-django.*]
ignore_missing_imports
=
True
[mypy-swiftclient.*]
ignore_missing_imports
=
True
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment