File: .dockerignore

package info (click to toggle)
python-shapely 2.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,536 kB
  • sloc: python: 18,651; ansic: 6,615; makefile: 90; sh: 62
file content (21 lines) | stat: -rw-r--r-- 301 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Ignore everything
**

# Allow files and directories
!/*.py
!/*LICENSE*
!/setup.cfg
!/pyproject.toml
!/shapely/**
!/src/**
!/tests/**

# Ignore unnecessary files inside allowed directories
# This should go after the allowed directories
**/*~
**/*.log
**/.DS_Store
**/Thumbs.db
**/*.pyc
**/*.so
**/.*